summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2017-01-29 13:38:55 +0000
committerDr. Stephen Henson <steve@openssl.org>2017-01-30 13:00:18 +0000
commit91410d40cbc2f63bf6c27c01f9f002ef7bcc3277 (patch)
tree952c28d7c52266ae43e9a189bc8abb79f4e9eed7 /apps
parentcdf516d988807671bfda18bad135b26c3fac8888 (diff)
fix style issues
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2301)
Diffstat (limited to 'apps')
-rw-r--r--apps/s_cb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_cb.c b/apps/s_cb.c
index 2c7fce5272..3f46156ef6 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -261,7 +261,7 @@ static int do_print_sigalgs(BIO *out, SSL *s, int shared)
SSL_get_sigalgs(s, i, &sign_nid, &hash_nid, NULL, &rsign, &rhash);
if (i)
BIO_puts(out, ":");
- sstr= get_sigtype(sign_nid);
+ sstr = get_sigtype(sign_nid);
if (sstr)
BIO_printf(out, "%s+", sstr);
else