summaryrefslogtreecommitdiff
path: root/packet.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-03-22 02:54:23 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-03-22 02:54:23 +0000
commit6328ab39891ea64ccd5c91e9be2ec5c4f843bbd0 (patch)
tree1cbd94cc201fc901cf33ea52191421eda89e6dd0 /packet.c
parent08105192fdb9441284ac37e309f6359d74aee596 (diff)
- 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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet.c b/packet.c
index 25de34951..f5144d107 100644
--- a/packet.c
+++ b/packet.c
@@ -37,7 +37,7 @@
37 */ 37 */
38 38
39#include "includes.h" 39#include "includes.h"
40RCSID("$OpenBSD: packet.c,v 1.91 2002/03/18 17:16:38 markus Exp $"); 40RCSID("$OpenBSD: packet.c,v 1.92 2002/03/19 10:49:35 markus Exp $");
41 41
42#include "xmalloc.h" 42#include "xmalloc.h"
43#include "buffer.h" 43#include "buffer.h"
@@ -173,7 +173,7 @@ packet_connection_is_on_socket(void)
173 return 1; 173 return 1;
174} 174}
175 175
176/* 176/*
177 * Exports an IV from the CipherContext required to export the key 177 * Exports an IV from the CipherContext required to export the key
178 * state back from the unprivileged child to the privileged parent 178 * state back from the unprivileged child to the privileged parent
179 * process. 179 * process.
@@ -196,7 +196,7 @@ int
196packet_get_keycontext(int mode, u_char *dat) 196packet_get_keycontext(int mode, u_char *dat)
197{ 197{
198 CipherContext *cc; 198 CipherContext *cc;
199 199
200 if (mode == MODE_OUT) 200 if (mode == MODE_OUT)
201 cc = &send_context; 201 cc = &send_context;
202 else 202 else
@@ -209,7 +209,7 @@ void
209packet_set_keycontext(int mode, u_char *dat) 209packet_set_keycontext(int mode, u_char *dat)
210{ 210{
211 CipherContext *cc; 211 CipherContext *cc;
212 212
213 if (mode == MODE_OUT) 213 if (mode == MODE_OUT)
214 cc = &send_context; 214 cc = &send_context;
215 else 215 else