diff options
author | Nils Nordman <nino@cvs.openbsd.org> | 2003-06-12 15:34:10 +0000 |
---|---|---|
committer | Nils Nordman <nino@cvs.openbsd.org> | 2003-06-12 15:34:10 +0000 |
commit | ce34742958d1da2aa79379cf5d637a1b20b6b110 (patch) | |
tree | 40ce997d98946bf93e4d94096591082a16d6483f /usr.bin | |
parent | 01acb80ad3ae8cf5185111544c0b4fd6e18b3b11 (diff) |
Typo.
Ok markus@.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/scp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c index b1d9b4c9c0e..2084a84dac0 100644 --- a/usr.bin/ssh/scp.c +++ b/usr.bin/ssh/scp.c @@ -71,7 +71,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: scp.c,v 1.105 2003/06/04 12:40:39 djm Exp $"); +RCSID("$OpenBSD: scp.c,v 1.106 2003/06/12 15:34:09 nino Exp $"); #include "xmalloc.h" #include "atomicio.h" @@ -147,7 +147,7 @@ do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc) close(reserved[0]); close(reserved[1]); - /* For a child to execute the command on the remote host using ssh. */ + /* Fork a child to execute the command on the remote host using ssh. */ do_cmd_pid = fork(); if (do_cmd_pid == 0) { /* Child. */ |