[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Richard Levitte
levitte at openssl.org
Mon Jan 23 10:31:40 UTC 2017
The branch OpenSSL_1_1_0-stable has been updated
via 408eb66aea74b5dfe52386f7a8756bd81b890a26 (commit)
from aaec49fae2c4605ec578ad77b14913852fe4acca (commit)
- Log -----------------------------------------------------------------
commit 408eb66aea74b5dfe52386f7a8756bd81b890a26
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)
(cherry picked from commit 57a19206b5aad7ca67f0d5ebae05af2799609819)
-----------------------------------------------------------------------
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 eeb83ed..49fc15d 100644
--- a/util/TLSProxy/Proxy.pm
+++ b/util/TLSProxy/Proxy.pm
@@ -299,6 +299,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