aboutsummaryrefslogtreecommitdiff
path: root/networking/nc.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-05 20:26:28 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-05 20:26:28 +0000
commitd78583017b505f4fc59e9625a62c6df5bdb41eb0 (patch)
tree231771f61046cc95c765fc91f65cff26081d8fab /networking/nc.c
parentbebd98e43ce4c6b4c7bfae28e8d9543059eb8416 (diff)
downloadbusybox-w32-d78583017b505f4fc59e9625a62c6df5bdb41eb0.tar.gz
busybox-w32-d78583017b505f4fc59e9625a62c6df5bdb41eb0.tar.bz2
busybox-w32-d78583017b505f4fc59e9625a62c6df5bdb41eb0.zip
nc: port nc 1.10 to busybox
git-svn-id: svn://busybox.net/trunk/busybox@18336 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 @@
9 9
10#include "busybox.h" 10#include "busybox.h"
11 11
12#if ENABLE_DESKTOP
13#include "nc_bloaty.c"
14#else
15
12/* Lots of small differences in features 16/* Lots of small differences in features
13 * when compared to "standard" nc 17 * when compared to "standard" nc
14 */ 18 */
@@ -195,3 +199,4 @@ int nc_main(int argc, char **argv)
195 } 199 }
196 } 200 }
197} 201}
202#endif