artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b5493c
)
Keep servertest silent and align with clienttest
author
tb
<tb@openbsd.org>
Tue, 11 Jul 2023 11:52:35 +0000
(11:52 +0000)
committer
tb
<tb@openbsd.org>
Tue, 11 Jul 2023 11:52:35 +0000
(11:52 +0000)
regress/lib/libssl/server/servertest.c
patch
|
blob
|
history
diff --git
a/regress/lib/libssl/server/servertest.c
b/regress/lib/libssl/server/servertest.c
index
f13b260
..
d572d14
100644
(file)
--- a/
regress/lib/libssl/server/servertest.c
+++ b/
regress/lib/libssl/server/servertest.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: servertest.c,v 1.
8 2023/07/11 10:09:47
tb Exp $ */
+/* $OpenBSD: servertest.c,v 1.
9 2023/07/11 11:52:35
tb Exp $ */
/*
* Copyright (c) 2015, 2016, 2017 Joel Sing <jsing@openbsd.org>
*
@@
-164,12
+164,13
@@
server_hello_test(int testno, struct server_hello_test *sht)
if (SSL_accept(ssl) != 0) {
if (sht->accept_fails)
-
ret = 0
;
+
goto done
;
fprintf(stderr, "SSL_accept() returned non-zero\n");
ERR_print_errors_fp(stderr);
goto failure;
}
+ done:
ret = 0;
failure: