- More reformatting merged from OpenBSD CVS
 - Merged OpenBSD CVS changes:
   - [channels.c]
     report from mrwizard@psu.edu via djm@ibs.com.au
   - [channels.c]
     set SO_REUSEADDR and SO_LINGER for forwarded ports.
     chip@valinux.com via damien@ibs.com.au
   - [nchan.c]
     it's not an error() if shutdown_write failes in nchan.
   - [readconf.c]
     remove dead #ifdef-0-code
   - [readconf.c servconf.c]
     strcasecmp instead of tolower
   - [scp.c]
     progress meter overflow fix from damien@ibs.com.au
   - [ssh-add.1 ssh-add.c]
     SSH_ASKPASS support
   - [ssh.1 ssh.c]
     postpone fork_after_authentication until command execution,
     request/patch from jahakala@cc.jyu.fi via damien@ibs.com.au
     plus: use daemon() for backgrounding
diff --git a/channels.h b/channels.h
index 5851257..f8bca5c 100644
--- a/channels.h
+++ b/channels.h
@@ -1,29 +1,26 @@
-/* RCSID("$Id: channels.h,v 1.3 1999/11/24 13:26:22 damien Exp $"); */
+/* RCSID("$Id: channels.h,v 1.4 1999/11/25 00:54:58 damien Exp $"); */
 
 #ifndef CHANNELS_H
 #define CHANNELS_H
 
 /* Definitions for channel types. */
-#define SSH_CHANNEL_FREE		0	/* This channel is free
-						 * (unused). */
-#define SSH_CHANNEL_X11_LISTENER	1	/* Listening for inet X11
-						 * conn. */
+#define SSH_CHANNEL_FREE		0	/* This channel is free (unused). */
+#define SSH_CHANNEL_X11_LISTENER	1	/* Listening for inet X11 conn. */
 #define SSH_CHANNEL_PORT_LISTENER	2	/* Listening on a port. */
 #define SSH_CHANNEL_OPENING		3	/* waiting for confirmation */
 #define SSH_CHANNEL_OPEN		4	/* normal open two-way channel */
-#define SSH_CHANNEL_CLOSED		5	/* waiting for close
-						 * confirmation */
-/*	SSH_CHANNEL_AUTH_FD		6    authentication fd */
+#define SSH_CHANNEL_CLOSED		5	/* waiting for close confirmation */
+/*	SSH_CHANNEL_AUTH_FD		6    	   authentication fd */
 #define SSH_CHANNEL_AUTH_SOCKET		7	/* authentication socket */
-/*	SSH_CHANNEL_AUTH_SOCKET_FD	8    connection to auth socket */
+/*	SSH_CHANNEL_AUTH_SOCKET_FD	8    	   connection to auth socket */
 #define SSH_CHANNEL_X11_OPEN		9	/* reading first X11 packet */
-#define SSH_CHANNEL_INPUT_DRAINING	10	/* sending remaining data to
-						 * conn */
-#define SSH_CHANNEL_OUTPUT_DRAINING	11	/* sending remaining data to
-						 * app */
+#define SSH_CHANNEL_INPUT_DRAINING	10	/* sending remaining data to conn */
+#define SSH_CHANNEL_OUTPUT_DRAINING	11	/* sending remaining data to app */
 
-/* Data structure for channel data.  This is iniailized in channel_allocate
-   and cleared in channel_free. */
+/*
+ * Data structure for channel data.  This is iniailized in channel_allocate
+ * and cleared in channel_free.
+ */
 
 typedef struct Channel {
 	int     type;		/* channel type/state */