The branch master has been updated
via 57a19206b5aad7ca67f0d5ebae05af2799609819 (commit)
from 9872238eb6fb981fc7c36ba4180d193cab077b34 (commit)
- Log -----------------------------------------------------------------
commit 57a19206b5aad7ca67f0d5ebae05af2799609819
Author: Bernd Edlinger <[email protected]>
Date: Tue Jan 10 09:22:05 2017 +0100
Check the exit code from the server process
Reviewed-by: Matt Caswell <[email protected]>
Reviewed-by: Richard Levitte <[email protected]>
(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;
}
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits