diff options
author | 2014-04-16 19:33:40 +0000 | |
---|---|---|
committer | 2014-04-16 19:33:40 +0000 | |
commit | 57bbb35e3d14548c5d76e0fa9fc86d35c9d860c0 (patch) | |
tree | efe7907eec0f1281401ef94aaf9f712700854aba /lib/libssl/src | |
parent | Remove ifdef'd out KerberosIV and stream encryption support. While (diff) | |
download | wireguard-openbsd-57bbb35e3d14548c5d76e0fa9fc86d35c9d860c0.tar.xz wireguard-openbsd-57bbb35e3d14548c5d76e0fa9fc86d35c9d860c0.zip |
repair knf
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/apps/apps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/apps/apps.c b/lib/libssl/src/apps/apps.c index 8a657547952..a97d779f53d 100644 --- a/lib/libssl/src/apps/apps.c +++ b/lib/libssl/src/apps/apps.c @@ -2584,7 +2584,7 @@ next_protos_parse(unsigned short *outlen, const char *in) return NULL; for (i = 0; i <= len; ++i) { - if (i == len || in[i] == ', ') { + if (i == len || in[i] == ',') { if (i - start > 255) { OPENSSL_free(out); return NULL; |