parent
116aabbb66
commit
b2cdcb50a2
|
@ -6,6 +6,9 @@
|
||||||
- djm@cvs.openbsd.org 2003/06/12 12:22:47
|
- djm@cvs.openbsd.org 2003/06/12 12:22:47
|
||||||
[LICENCE]
|
[LICENCE]
|
||||||
mention more copyright holders; ok markus@
|
mention more copyright holders; ok markus@
|
||||||
|
- nino@cvs.openbsd.org 2003/06/12 15:34:09
|
||||||
|
[scp.c]
|
||||||
|
Typo. Ok markus@.
|
||||||
|
|
||||||
20030614
|
20030614
|
||||||
- (djm) Update license on fake-rfc2553.[ch]; ok itojun@
|
- (djm) Update license on fake-rfc2553.[ch]; ok itojun@
|
||||||
|
@ -521,4 +524,4 @@
|
||||||
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
||||||
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2803 2003/06/18 10:26:13 djm Exp $
|
$Id: ChangeLog,v 1.2804 2003/06/18 10:26:34 djm Exp $
|
||||||
|
|
4
scp.c
4
scp.c
|
@ -71,7 +71,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#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 "xmalloc.h"
|
||||||
#include "atomicio.h"
|
#include "atomicio.h"
|
||||||
|
@ -151,7 +151,7 @@ do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc)
|
||||||
close(reserved[0]);
|
close(reserved[0]);
|
||||||
close(reserved[1]);
|
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();
|
do_cmd_pid = fork();
|
||||||
if (do_cmd_pid == 0) {
|
if (do_cmd_pid == 0) {
|
||||||
/* Child. */
|
/* Child. */
|
||||||
|
|
Loading…
Reference in New Issue