summaryrefslogtreecommitdiff
path: root/data/ncftp/mdns.diff
blob: e9956b8eb152810d424c0f63188dd64dd933863c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
diff -ru ncftp-3.2.1/ncftp/main.c ncftp-3.2.1+iPhone/ncftp/main.c
--- ncftp-3.2.1/ncftp/main.c	2006-08-05 21:30:44.000000000 +0000
+++ ncftp-3.2.1+iPhone/ncftp/main.c	2008-03-04 19:56:17.000000000 +0000
@@ -1,3 +1,5 @@
+#include <mach-o/nlist.h>
+
 /* main.c
  *
  * Copyright (c) 1992-2005 by Mike Gleason.
@@ -401,6 +403,13 @@
 main_void_return_t
 main(int argc, char **const argv)
 {
+    struct nlist nl[2];
+    memset(nl, 0, sizeof(nl));
+    nl[0].n_un.n_name = (char *) "_useMDNSResponder";
+    nlist("/usr/lib/libc.dylib", nl);
+    if (nl[0].n_type != N_UNDF)
+        *(int *) nl[0].n_value = 0;
+
 	int c;
 	int n;
 	GetoptInfo opt;