summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl_ciph.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2014-05-29 17:13:48 +0000
committerderaadt <deraadt@openbsd.org>2014-05-29 17:13:48 +0000
commitf9ad4413d5fba7e371bd9adb38f90f7c97a27c65 (patch)
treebe850fe42cf200858782ef9274ea59c1c775de1e /lib/libssl/ssl_ciph.c
parentuse calloc, from Benjamin Baier (diff)
downloadwireguard-openbsd-f9ad4413d5fba7e371bd9adb38f90f7c97a27c65.tar.xz
wireguard-openbsd-f9ad4413d5fba7e371bd9adb38f90f7c97a27c65.zip
repair KNF indent
Diffstat (limited to 'lib/libssl/ssl_ciph.c')
-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)