summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/apps
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2014-04-16 19:33:40 +0000
committertedu <tedu@openbsd.org>2014-04-16 19:33:40 +0000
commit57bbb35e3d14548c5d76e0fa9fc86d35c9d860c0 (patch)
treeefe7907eec0f1281401ef94aaf9f712700854aba /lib/libssl/src/apps
parentRemove ifdef'd out KerberosIV and stream encryption support. While (diff)
downloadwireguard-openbsd-57bbb35e3d14548c5d76e0fa9fc86d35c9d860c0.tar.xz
wireguard-openbsd-57bbb35e3d14548c5d76e0fa9fc86d35c9d860c0.zip
repair knf
Diffstat (limited to 'lib/libssl/src/apps')
-rw-r--r--lib/libssl/src/apps/apps.c2
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;