uClinux ifdef was accidentally inverted

--HG--
extra : convert_revision : 0b32300bc2ad5a96be40f0e2b9815a8824c2c729
This commit is contained in:
Matt Johnston 2007-07-19 14:08:01 +00:00
parent 4639844208
commit 0b72cf1ed2

2
scp.c
View File

@ -200,7 +200,7 @@ do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc)
#endif /* __uClinux__ */
/* Fork a child to execute the command on the remote host using ssh. */
#ifndef __uClinux__
#ifdef __uClinux__
do_cmd_pid = vfork();
#else
do_cmd_pid = fork();