projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9c2b10
)
Better use BIO_snprintf() than snprintf(), in case the later isn't available
author
Richard Levitte
<levitte@openssl.org>
Thu, 7 Apr 2016 11:03:29 +0000
(13:03 +0200)
committer
Richard Levitte
<levitte@openssl.org>
Thu, 7 Apr 2016 11:35:24 +0000
(13:35 +0200)
Reviewed-by: Tim Hudson <tjh@openssl.org>
test/ssl_test.c
patch
|
blob
|
history
diff --git
a/test/ssl_test.c
b/test/ssl_test.c
index 499afd5e234ce2ae18229d6fc8caba8c7ffc1813..b95120eadcf8ed95da5ed12a101bca353d8e1643 100644
(file)
--- a/
test/ssl_test.c
+++ b/
test/ssl_test.c
@@
-186,8
+186,8
@@
static void tear_down(SSL_TEST_FIXTURE fixture)
static int test_handshake(int idx)
{
SETUP_SSL_TEST_FIXTURE();
- snprintf(fixture.test_app, sizeof(fixture.test_app),
- "test-%d", idx);
+
BIO_
snprintf(fixture.test_app, sizeof(fixture.test_app),
+
"test-%d", idx);
EXECUTE_SSL_TEST();
}