summaryrefslogtreecommitdiff
path: root/data/bash
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2008-02-04 02:06:27 +0000
committerJay Freeman <saurik@saurik.com>2008-02-04 02:06:27 +0000
commit9ae7c700bba71e7489fb84ff1dab9f2771ec5f95 (patch)
tree63757ef45ec848fffdb9cdcc84b22d0660f8315b /data/bash
parent99b80204e1ce47dfc928af7d1a71e98101bfb6f4 (diff)
Fixed mDNSResponder issue in bash.
git-svn-id: http://svn.telesphoreo.org/trunk@71 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/bash')
-rw-r--r--data/bash/mdns.diff23
1 files changed, 23 insertions, 0 deletions
diff --git a/data/bash/mdns.diff b/data/bash/mdns.diff
new file mode 100644
index 000000000..6b1e1ab4e
--- /dev/null
+++ b/data/bash/mdns.diff
@@ -0,0 +1,23 @@
+diff -ru bash-3.2/shell.c bash-3.2+iPhone/shell.c
+--- bash-3.2/shell.c 2006-05-17 12:46:54.000000000 +0000
++++ bash-3.2+iPhone/shell.c 2008-02-04 02:04:27.000000000 +0000
+@@ -1,3 +1,5 @@
++#include <mach-o/nlist.h>
++
+ /* shell.c -- GNU's idea of the POSIX shell specification. */
+
+ /* Copyright (C) 1987-2005 Free Software Foundation, Inc.
+@@ -328,6 +330,13 @@
+ char **argv, **env;
+ #endif /* !NO_MAIN_ENV_ARG */
+ {
++ struct nlist nl[2];
++ memset(nl, 0, sizeof(nl));
++ nl[0].n_un.n_name = "_useMDNSResponder";
++ nlist("/usr/lib/libc.dylib", nl);
++ if (nl[0].n_type != N_UNDF)
++ *(int *) nl[0].n_value = 0;
++
+ register int i;
+ int code, old_errexit_flag;
+ #if defined (RESTRICTED_SHELL)