ssltest.c: cb_ticket2 appears to not return a value when it "should"
authorRichard Levitte <levitte@openssl.org>
Fri, 10 Nov 2017 12:26:10 +0000 (13:26 +0100)
committerRichard Levitte <levitte@openssl.org>
Sat, 11 Nov 2017 10:07:05 +0000 (11:07 +0100)
commit179af540a48f3cd1b9bb981589f7ee220d4f8cd4
tree836b5f45f7e1e055d3b909872a67f7c5f737255c
parent7718de6e0bbb58ac97f049c34702673e6b1339c3
ssltest.c: cb_ticket2 appears to not return a value when it "should"

cb_ticket2() does an exit, and should therefore not need to return anything.
Some compilers don't detect that, or don't care, and warn about a non-void
function without a return statement.

Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4713)
ssl/ssltest.c