aboutsummaryrefslogtreecommitdiff
path: root/programs
diff options
context:
space:
mode:
authorFelix Weinrank <weinrank@fh-muenster.de>2019-04-02 17:13:31 +0200
committerFelix Weinrank <weinrank@fh-muenster.de>2019-04-02 17:13:31 +0200
commit736a85c8f223459ac33ac57cd20ccded08eec5f5 (patch)
treee40847112d0129f412f42391e72e06d9db1aff83 /programs
parent041d80483d1c4b96b337e6e8d1ee3046cca7d447 (diff)
downloadusrsctp-736a85c8f223459ac33ac57cd20ccded08eec5f5.tar.gz
improve error handling
Diffstat (limited to 'programs')
-rw-r--r--programs/http_client.c1
-rw-r--r--programs/http_client_upcall.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/programs/http_client.c b/programs/http_client.c
index 830600df..2caf7c9c 100644
--- a/programs/http_client.c
+++ b/programs/http_client.c
@@ -292,5 +292,6 @@ out:
sleep(1);
#endif
}
+ printf("Finished, returning with %d\n", result);
return (result);
}
diff --git a/programs/http_client_upcall.c b/programs/http_client_upcall.c
index a475de9a..6cd822b8 100644
--- a/programs/http_client_upcall.c
+++ b/programs/http_client_upcall.c
@@ -332,6 +332,6 @@ out:
#endif
}
- printf("returning: %d\n", result);
+ printf("Finished, returning with %d\n", result);
return (result);
}