[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Mon Jan 23 10:31:17 UTC 2017
The branch master has been updated
via 57a19206b5aad7ca67f0d5ebae05af2799609819 (commit)
from 9872238eb6fb981fc7c36ba4180d193cab077b34 (commit)
- Log -----------------------------------------------------------------
commit 57a19206b5aad7ca67f0d5ebae05af2799609819
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date: Tue Jan 10 09:22:05 2017 +0100
Check the exit code from the server process
Reviewed-by: Matt Caswell <matt at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2205)
-----------------------------------------------------------------------
Summary of changes:
util/TLSProxy/Proxy.pm | 1 +
1 file changed, 1 insertion(+)
diff --git a/util/TLSProxy/Proxy.pm b/util/TLSProxy/Proxy.pm
index 0d60bd3..2e90ab0 100644
--- a/util/TLSProxy/Proxy.pm
+++ b/util/TLSProxy/Proxy.pm
@@ -316,6 +316,7 @@ sub clientstart
print "Waiting for server process to close: "
.$self->serverpid."\n";
waitpid( $self->serverpid, 0);
+ die "exit code $? from server process\n" if $? != 0;
}
return 1;
}
More information about the openssl-commits
mailing list