diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-09-30 16:48:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-09-30 16:48:49 +0000 |
commit | a60c86617b3bb76278e25bb76eb77045389eade0 (patch) | |
tree | e3aaaabd832349e82b407645f5558d9a0406f01f | |
parent | 9fb1bc9e659a3d803b7b8ab38c5c9b78068fc7fc (diff) |
spelling
-rw-r--r-- | usr.bin/ssh/tildexpand.c | 5 |
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. */ |