diff options
-rw-r--r-- | usr.bin/ssh/sftp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp.c b/usr.bin/ssh/sftp.c index 7e61c5333fb..56f72dcadbf 100644 --- a/usr.bin/ssh/sftp.c +++ b/usr.bin/ssh/sftp.c @@ -24,7 +24,7 @@ #include "includes.h" -RCSID("$OpenBSD: sftp.c,v 1.12 2001/04/05 10:42:54 markus Exp $"); +RCSID("$OpenBSD: sftp.c,v 1.13 2001/04/08 20:52:55 deraadt Exp $"); /* XXX: commandline mode */ /* XXX: copy between two remote hosts (commandline) */ @@ -198,7 +198,7 @@ main(int argc, char **argv) if (optind == argc || argc > (optind + 1)) usage(); - userhost = argv[optind]; + userhost = xstrdup(argv[optind]); if ((host = strchr(userhost, '@')) == NULL) host = userhost; |