diff options
author | Viktor Dukhovni <openssl-users@dukhovni.org> | 2015-04-16 01:50:03 -0400 |
---|---|---|
committer | Viktor Dukhovni <openssl-users@dukhovni.org> | 2015-04-16 13:44:59 -0400 |
commit | 61986d32f37cbaeaed08bd955ff27d35b72ea29a (patch) | |
tree | a93f68aa58dd5dea6550887b9f44796d92a5b183 /apps/sess_id.c | |
parent | b65558328a9fcda5cef38857f9cc033c15ec1c32 (diff) | |
download | openssl-new-61986d32f37cbaeaed08bd955ff27d35b72ea29a.tar.gz |
Code style: space after 'if'
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'apps/sess_id.c')
-rw-r--r-- | apps/sess_id.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/sess_id.c b/apps/sess_id.c index 53ccbb3576..9421e40842 100644 --- a/apps/sess_id.c +++ b/apps/sess_id.c @@ -166,7 +166,7 @@ int MAIN(int argc, char **argv) BIO_printf(bio_err, "Context too long\n"); goto end; } - if(!SSL_SESSION_set1_id_context(x, (unsigned char *)context, ctx_len)) { + if (!SSL_SESSION_set1_id_context(x, (unsigned char *)context, ctx_len)) { BIO_printf(bio_err, "Error setting id context\n"); goto end; } |