summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2014-05-29 17:13:49 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2014-05-29 17:13:49 +0000
commit5bf5321b1646ba5f8f5019c8591b89ed7ddab822 (patch)
tree6d9b67d4c23b52f2063d2595087dd5956cde7511 /lib
parent9c5bed6ba47995f2a006ddc78b4d7393b066775e (diff)
repair KNF indent
Diffstat (limited to 'lib')
-rw-r--r--lib/libssl/ssl_ciph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/ssl_ciph.c b/lib/libssl/ssl_ciph.c
index 64248d8e917..5e93a4cde1d 100644
--- a/lib/libssl/ssl_ciph.c
+++ b/lib/libssl/ssl_ciph.c
@@ -1619,7 +1619,7 @@ SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int len)
if (buf == NULL)
return("malloc Error");
} else if (len < 128)
- return("Buffer too small");
+ return("Buffer too small");
l = snprintf(buf, len, format, cipher->name, ver, kx, au, enc, mac, exp_str);
if (l >= len || l == -1)