summaryrefslogtreecommitdiffstats
path: root/package/busybox/busybox-1.2.2.1-max_host_len_40.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2009-04-15 13:42:08 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2009-04-15 13:42:08 +0000
commit55b03d611578cd4f92534a27259b8a3b41d1e589 (patch)
tree49a7ca0a7b8b75c7374e28be8742ab1df41a02e0 /package/busybox/busybox-1.2.2.1-max_host_len_40.patch
parentc19a51f9933446e67854e5883e62f16c57cb49fc (diff)
downloadbuildroot-novena-55b03d611578cd4f92534a27259b8a3b41d1e589.tar.gz
buildroot-novena-55b03d611578cd4f92534a27259b8a3b41d1e589.zip
busybox: remove ancient versions
Diffstat (limited to 'package/busybox/busybox-1.2.2.1-max_host_len_40.patch')
-rw-r--r--package/busybox/busybox-1.2.2.1-max_host_len_40.patch61
1 files changed, 0 insertions, 61 deletions
diff --git a/package/busybox/busybox-1.2.2.1-max_host_len_40.patch b/package/busybox/busybox-1.2.2.1-max_host_len_40.patch
deleted file mode 100644
index 3c3290054..000000000
--- a/package/busybox/busybox-1.2.2.1-max_host_len_40.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-diff -ur busybox-1.2.2.1/networking/dnsd.c busybox-1.2.2.1-patched/networking/dnsd.c
---- busybox-1.2.2.1/networking/dnsd.c 2006-10-24 15:21:17.000000000 -0500
-+++ busybox-1.2.2.1-patched/networking/dnsd.c 2007-04-12 12:49:53.000000000 -0500
-@@ -31,11 +31,11 @@
-
- #define is_daemon() (flags&16)
- #define is_verbose() (flags&32)
--//#define DEBUG
-+#undef DEBUG
-
-
- enum {
-- MAX_HOST_LEN = 16, // longest host name allowed is 15
-+ MAX_HOST_LEN = 41, // longest host name allowed is 40
- IP_STRING_LEN = 18, // .xxx.xxx.xxx.xxx\0
-
- //must be strlen('.in-addr.arpa') larger than IP_STRING_LEN
-@@ -229,19 +229,23 @@
- {
- int i;
- struct dns_entry *d = dnsentry;
-+ char *p,*q;
-+
-+ q = (char *)&(qs[1]);
-+ p = &(d->name[1]);
-
- if(d) do {
- #ifdef DEBUG
- if(qs && d) {
-- char *p,*q;
-- q = (char *)&(qs[1]);
-- p = &(d->name[1]);
- fprintf(stderr, "\n%s: %d/%d p:%s q:%s %d",
- __FUNCTION__, strlen(p), (int)(d->name[0]),
- p, q, strlen(q));
- }
- #endif
- if (type == REQ_A) { /* search by host name */
-+ p = &(d->name[1]);
-+ if(strlen(q) != strlen(p))
-+ continue;
- for(i = 1; i <= (int)(d->name[0]); i++)
- if(tolower(qs[i]) != d->name[i])
- break;
-@@ -398,13 +402,15 @@
- fprintf(stderr,"fileconf: %s\n", fileconf);
- }
-
-- if(is_daemon())
-+ if(is_daemon()) {
- #ifdef BB_NOMMU
- /* reexec for vfork() do continue parent */
- vfork_daemon_rexec(1, 0, argc, argv, "-d");
- #else
- bb_xdaemon(1, 0);
- #endif
-+ daemonmode = 1;
-+ }
-
- dnsentryinit(is_verbose());
-