- 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
diff --git a/packet.c b/packet.c
index 25de349..f5144d1 100644
--- a/packet.c
+++ b/packet.c
@@ -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 @@
 	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 @@
 packet_get_keycontext(int mode, u_char *dat)
 {
 	CipherContext *cc;
-	
+
 	if (mode == MODE_OUT)
 		cc = &send_context;
 	else
@@ -209,7 +209,7 @@
 packet_set_keycontext(int mode, u_char *dat)
 {
 	CipherContext *cc;
-	
+
 	if (mode == MODE_OUT)
 		cc = &send_context;
 	else