aboutsummaryrefslogtreecommitdiff
path: root/networking/nc.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-05 20:26:28 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-05 20:26:28 +0000
commit29fe7265b8c1917ebc03283f22a3eb61e9195979 (patch)
tree231771f61046cc95c765fc91f65cff26081d8fab /networking/nc.c
parent00c2c4868a5bd90fe36beaf9236f23f60cd5e8e1 (diff)
downloadbusybox-29fe7265b8c1917ebc03283f22a3eb61e9195979.tar.gz
nc: port nc 1.10 to busybox
Diffstat (limited to 'networking/nc.c')
-rw-r--r--networking/nc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/networking/nc.c b/networking/nc.c
index bc7c701fe..e89eb7615 100644
--- a/networking/nc.c
+++ b/networking/nc.c
@@ -9,6 +9,10 @@
#include "busybox.h"
+#if ENABLE_DESKTOP
+#include "nc_bloaty.c"
+#else
+
/* Lots of small differences in features
* when compared to "standard" nc
*/
@@ -195,3 +199,4 @@ int nc_main(int argc, char **argv)
}
}
}
+#endif