# HG changeset patch # User Matt Johnston # Date 1184854081 0 # Node ID c0ce48053259816191e8a809ca20d0d0c663eba8 # Parent 2d943453cecfc6cbd6b657f0f6e0d7c8857a7847 uClinux ifdef was accidentally inverted diff -r 2d943453cecf -r c0ce48053259 scp.c --- 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();