use BIO_snprintf() instead of snprintf + use BIO_FP_TEXT for text output
Submitted by: Gisle Vanem
This commit is contained in:
parent
c2cd422ac6
commit
e968089485
@ -223,7 +223,7 @@ static unsigned int psk_client_cb(SSL *ssl, const char *hint, char *identity,
|
|||||||
BIO_printf(bio_c_out, "Received PSK identity hint '%s'\n", hint);
|
BIO_printf(bio_c_out, "Received PSK identity hint '%s'\n", hint);
|
||||||
|
|
||||||
/* lookup PSK identity and PSK key based on the given identity hint here */
|
/* lookup PSK identity and PSK key based on the given identity hint here */
|
||||||
ret = snprintf(identity, max_identity_len, psk_identity);
|
ret = BIO_snprintf(identity, max_identity_len, psk_identity);
|
||||||
if (ret < 0 || (unsigned int)ret > max_identity_len)
|
if (ret < 0 || (unsigned int)ret > max_identity_len)
|
||||||
goto out_err;
|
goto out_err;
|
||||||
if (c_debug)
|
if (c_debug)
|
||||||
|
@ -470,7 +470,7 @@ int main(int argc, char *argv[])
|
|||||||
debug = 0;
|
debug = 0;
|
||||||
cipher = 0;
|
cipher = 0;
|
||||||
|
|
||||||
bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
|
bio_err=BIO_new_fp(stderr,BIO_NOCLOSE|BIO_FP_TEXT);
|
||||||
|
|
||||||
CRYPTO_set_locking_callback(lock_dbg_cb);
|
CRYPTO_set_locking_callback(lock_dbg_cb);
|
||||||
|
|
||||||
@ -489,7 +489,7 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
RAND_seed(rnd_seed, sizeof rnd_seed);
|
RAND_seed(rnd_seed, sizeof rnd_seed);
|
||||||
|
|
||||||
bio_stdout=BIO_new_fp(stdout,BIO_NOCLOSE);
|
bio_stdout=BIO_new_fp(stdout,BIO_NOCLOSE|BIO_FP_TEXT);
|
||||||
|
|
||||||
argc--;
|
argc--;
|
||||||
argv++;
|
argv++;
|
||||||
@ -2350,7 +2350,7 @@ static unsigned int psk_client_callback(SSL *ssl, const char *hint, char *identi
|
|||||||
int ret;
|
int ret;
|
||||||
unsigned int psk_len = 0;
|
unsigned int psk_len = 0;
|
||||||
|
|
||||||
ret = snprintf(identity, max_identity_len, "Client_identity");
|
ret = BIO_snprintf(identity, max_identity_len, "Client_identity");
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto out_err;
|
goto out_err;
|
||||||
if (debug)
|
if (debug)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user