changeset 444:c0ce48053259

uClinux ifdef was accidentally inverted
author Matt Johnston <matt@ucc.asn.au>
date Thu, 19 Jul 2007 14:08:01 +0000
parents 2d943453cecf
children edbee0596531
files scp.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scp.c	Thu Jul 19 14:07:41 2007 +0000
+++ b/scp.c	Thu Jul 19 14:08:01 2007 +0000
@@ -200,7 +200,7 @@
 #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();