- 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/tildexpand.c b/tildexpand.c
index 92422ee..8ee551f 100644
--- a/tildexpand.c
+++ b/tildexpand.c
@@ -6,7 +6,7 @@
  */
 
 #include "includes.h"
-RCSID("$Id: tildexpand.c,v 1.2 1999/11/24 13:26:23 damien Exp $");
+RCSID("$Id: tildexpand.c,v 1.3 1999/11/25 00:54:59 damien Exp $");
 
 #include "xmalloc.h"
 #include "ssh.h"
@@ -38,7 +38,7 @@
 	else
 		userlen = strlen(filename);	/* Nothing after username. */
 	if (userlen == 0)
-		pw = getpwuid(my_uid);	/* Own home directory. */
+		pw = getpwuid(my_uid);		/* Own home directory. */
 	else {
 		/* Tilde refers to someone elses home directory. */
 		if (userlen > sizeof(user) - 1)
@@ -47,12 +47,12 @@
 		user[userlen] = 0;
 		pw = getpwnam(user);
 	}
-	/* Check that we found the user. */
 	if (!pw)
 		fatal("Unknown user %100s.", user);
 
 	/* If referring to someones home directory, return it now. */
-	if (!cp) {		/* Only home directory specified */
+	if (!cp) {
+		/* Only home directory specified */
 		return xstrdup(pw->pw_dir);
 	}
 	/* Build a path combining the specified directory and path. */