summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/tildexpand.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/ssh/tildexpand.c')
-rw-r--r--usr.bin/ssh/tildexpand.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/ssh/tildexpand.c b/usr.bin/ssh/tildexpand.c
index 390eab3c064..d9b66882c06 100644
--- a/usr.bin/ssh/tildexpand.c
+++ b/usr.bin/ssh/tildexpand.c
@@ -12,7 +12,7 @@ Created: Wed Jul 12 01:07:36 1995 ylo
*/
#include "includes.h"
-RCSID("$Id: tildexpand.c,v 1.1 1999/09/26 20:53:38 deraadt Exp $");
+RCSID("$Id: tildexpand.c,v 1.2 1999/09/30 16:48:48 deraadt Exp $");
#include "xmalloc.h"
#include "ssh.h"
@@ -32,8 +32,7 @@ char *tilde_expand_filename(const char *filename, uid_t my_uid)
if (filename[0] != '~')
return xstrdup(filename);
-
- /* Skiop the tilde. */
+ /* Skip the tilde. */
filename++;
/* Find where the username ends. */