Re: scp issue in 0.56

2013-03-31 Thread Matt Johnston
Hi, Thanks for pointing that out, I'll fix it in the next release. Cheers, Matt On Thu, Mar 28, 2013 at 05:51:58PM +0100, Frank Van Uffelen wrote: Hello, I think I've found a problem in the scp implementation in 0.56: lines 233-235 of scp.c say: #ifdef USE_VFORK

scp issue in 0.56

2013-03-28 Thread Frank Van Uffelen
Hello, I think I've found a problem in the scp implementation in 0.56: lines 233-235 of scp.c say: #ifdef USE_VFORK arg_setup(host, remuser, cmd); #endif and IMO it should be #ifndef USE_VFORK arg_setup(host, remuser, cmd); #endif which would correspond to the