diff options
author | 2002-06-30 21:59:45 +0000 | |
---|---|---|
committer | 2002-06-30 21:59:45 +0000 | |
commit | 9e6850eb0dbdf34d4123134be1bfbb06470fd401 (patch) | |
tree | 871b410d9736c77c1e0845f662fab718e360d070 /usr.bin/ssh/ssh.c | |
parent | lint asks that we use names that do not overlap (diff) | |
download | wireguard-openbsd-9e6850eb0dbdf34d4123134be1bfbb06470fd401.tar.xz wireguard-openbsd-9e6850eb0dbdf34d4123134be1bfbb06470fd401.zip |
minor KNF
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index f59dc441367..3e1b37dce59 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.179 2002/06/12 01:09:52 markus Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.180 2002/06/30 21:59:45 deraadt Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -539,7 +539,7 @@ again: if (buffer_len(&command) == 0) tty_flag = 1; - /* Force no tty*/ + /* Force no tty */ if (no_tty_flag) tty_flag = 0; /* Do not allocate a tty if stdin is not a tty. */ @@ -613,7 +613,8 @@ again: if (options.rhosts_rsa_authentication || options.hostbased_authentication) { sensitive_data.nkeys = 3; - sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key)); + sensitive_data.keys = xmalloc(sensitive_data.nkeys * + sizeof(Key)); PRIV_START; sensitive_data.keys[0] = key_load_private_type(KEY_RSA1, |