diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-03-22 03:54:23 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-03-22 03:54:23 +0100 |
commit | 6328ab39891ea64ccd5c91e9be2ec5c4f843bbd0 (patch) | |
tree | 1cbd94cc201fc901cf33ea52191421eda89e6dd0 /packet.c | |
parent | - markus@cvs.openbsd.org 2002/03/19 10:35:39 (diff) | |
download | openssh-6328ab39891ea64ccd5c91e9be2ec5c4f843bbd0.tar.xz openssh-6328ab39891ea64ccd5c91e9be2ec5c4f843bbd0.zip |
- markus@cvs.openbsd.org 2002/03/19 10:49:35
[auth-krb5.c auth-rh-rsa.c auth.c cipher.c key.c misc.h packet.c session.c
sftp-client.c sftp-glob.h sftp.c ssh-add.c ssh.c sshconnect2.c sshd.c
ttymodes.c]
KNF whitespace
Diffstat (limited to 'packet.c')
-rw-r--r-- | packet.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -37,7 +37,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: packet.c,v 1.91 2002/03/18 17:16:38 markus Exp $"); +RCSID("$OpenBSD: packet.c,v 1.92 2002/03/19 10:49:35 markus Exp $"); #include "xmalloc.h" #include "buffer.h" @@ -173,7 +173,7 @@ packet_connection_is_on_socket(void) return 1; } -/* +/* * Exports an IV from the CipherContext required to export the key * state back from the unprivileged child to the privileged parent * process. @@ -196,7 +196,7 @@ int packet_get_keycontext(int mode, u_char *dat) { CipherContext *cc; - + if (mode == MODE_OUT) cc = &send_context; else @@ -209,7 +209,7 @@ void packet_set_keycontext(int mode, u_char *dat) { CipherContext *cc; - + if (mode == MODE_OUT) cc = &send_context; else |