mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 19:07:28 +00:00
uClinux ifdef was accidentally inverted
--HG-- extra : convert_revision : 0b32300bc2ad5a96be40f0e2b9815a8824c2c729
This commit is contained in:
parent
4639844208
commit
0b72cf1ed2
2
scp.c
2
scp.c
@ -200,7 +200,7 @@ do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc)
|
|||||||
#endif /* __uClinux__ */
|
#endif /* __uClinux__ */
|
||||||
|
|
||||||
/* Fork 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. */
|
||||||
#ifndef __uClinux__
|
#ifdef __uClinux__
|
||||||
do_cmd_pid = vfork();
|
do_cmd_pid = vfork();
|
||||||
#else
|
#else
|
||||||
do_cmd_pid = fork();
|
do_cmd_pid = fork();
|
||||||
|
Loading…
Reference in New Issue
Block a user