summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-rsa.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2001-12-05 10:06:12 +0000
committerderaadt <deraadt@openbsd.org>2001-12-05 10:06:12 +0000
commit5cf0410b14f7dd265c6caf5e58231e02729f4650 (patch)
treec72360a0037e2328eab1278dcefd1506ebf0cab1 /usr.bin/ssh/ssh-rsa.c
parentthis stuff is supplied by -lrpcsvc (diff)
downloadwireguard-openbsd-5cf0410b14f7dd265c6caf5e58231e02729f4650.tar.xz
wireguard-openbsd-5cf0410b14f7dd265c6caf5e58231e02729f4650.zip
minor KNF
Diffstat (limited to 'usr.bin/ssh/ssh-rsa.c')
-rw-r--r--usr.bin/ssh/ssh-rsa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-rsa.c b/usr.bin/ssh/ssh-rsa.c
index a6a703b9511..27522ef687d 100644
--- a/usr.bin/ssh/ssh-rsa.c
+++ b/usr.bin/ssh/ssh-rsa.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh-rsa.c,v 1.13 2001/11/10 13:22:42 markus Exp $");
+RCSID("$OpenBSD: ssh-rsa.c,v 1.14 2001/12/05 10:06:12 deraadt Exp $");
#include <openssl/evp.h>
#include <openssl/err.h>
@@ -150,7 +150,7 @@ ssh_rsa_verify(
sigblob = buffer_get_string(&b, &len);
rlen = buffer_len(&b);
buffer_free(&b);
- if(rlen != 0) {
+ if (rlen != 0) {
error("ssh_rsa_verify: remaining bytes in signature %d", rlen);
xfree(sigblob);
return -1;