diff options
author | Jay Freeman <saurik@saurik.com> | 2008-04-06 10:25:27 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-04-06 10:25:27 +0000 |
commit | fa14d4f1f78fb477de01552a1d76d1a1b3489b73 (patch) | |
tree | 75a1c968c8589ff6b0aa5e0c6961712c772d9145 /data/wget | |
parent | 6a504236d38b5c41fd7b2b0811a3a77fdcd9281f (diff) |
Fixed a cast warning with the mDNSResponder fix using the 4.2 compiler.
git-svn-id: http://svn.telesphoreo.org/trunk@196 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/wget')
-rw-r--r-- | data/wget/mdns.diff | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/wget/mdns.diff b/data/wget/mdns.diff index f268b346e..0d19bf9a7 100644 --- a/data/wget/mdns.diff +++ b/data/wget/mdns.diff @@ -13,7 +13,7 @@ diff -ru wget-1.9.1/src/main.c wget-1.9.1+iPhone/src/main.c { + struct nlist nl[2]; + memset(nl, 0, sizeof(nl)); -+ nl[0].n_un.n_name = "_useMDNSResponder"; ++ 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; |