- deraadt@cvs.openbsd.org 2006/03/19 18:53:12
     [kex.c kex.h monitor.c myproposal.h session.c]
     spacing
diff --git a/ChangeLog b/ChangeLog
index 8bd37a0..8c76270 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -40,6 +40,9 @@
    - deraadt@cvs.openbsd.org 2006/03/19 18:52:11
      [auth1.c authfd.c channels.c]
      spacing
+   - deraadt@cvs.openbsd.org 2006/03/19 18:53:12
+     [kex.c kex.h monitor.c myproposal.h session.c]
+     spacing
 
 20060325
  - OpenBSD CVS Sync
@@ -4297,4 +4300,4 @@
    - (djm) Trim deprecated options from INSTALL. Mention UsePAM
    - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
 
-$Id: ChangeLog,v 1.4252 2006/03/26 02:57:41 djm Exp $
+$Id: ChangeLog,v 1.4253 2006/03/26 02:58:55 djm Exp $
diff --git a/kex.c b/kex.c
index ced56e6..930e9cb 100644
--- a/kex.c
+++ b/kex.c
@@ -432,7 +432,7 @@
 
 	if ((mdsz = EVP_MD_size(kex->evp_md)) <= 0)
 		fatal("bad kex md size %d", mdsz);
- 	digest = xmalloc(roundup(need, mdsz));
+	digest = xmalloc(roundup(need, mdsz));
 
 	buffer_init(&b);
 	buffer_put_bignum2(&b, shared_secret);
diff --git a/monitor.c b/monitor.c
index e34d006..8b304f9 100644
--- a/monitor.c
+++ b/monitor.c
@@ -545,7 +545,7 @@
 	p = buffer_get_string(m, &datlen);
 
 	/*
-	 * Supported KEX types will only return SHA1 (20 byte) or 
+	 * Supported KEX types will only return SHA1 (20 byte) or
 	 * SHA256 (32 byte) hashes
 	 */
 	if (datlen != 20 && datlen != 32)
diff --git a/session.c b/session.c
index 6efaf65..b71a2c7 100644
--- a/session.c
+++ b/session.c
@@ -2190,7 +2190,7 @@
 
 	/*
 	 * Adjust cleanup callback attachment to send close messages when
-	 * the channel gets EOF. The session will be then be closed 
+	 * the channel gets EOF. The session will be then be closed
 	 * by session_close_by_channel when the childs close their fds.
 	 */
 	channel_register_cleanup(c->self, session_close_by_channel, 1);