diff options
author | Rob Landley | 2005-08-13 04:05:50 +0000 |
---|---|---|
committer | Rob Landley | 2005-08-13 04:05:50 +0000 |
commit | b309ec71c8bac3ee19fbb0d5a83612f122d64e81 (patch) | |
tree | b457d8645a933dc34917b5bc422a844923cd5b6b /busybox/patches/udhcpd_foreground.diff | |
parent | 866bad310fe448ddb605b77e8dd5557a4d863c3f (diff) | |
download | busybox-b309ec71c8bac3ee19fbb0d5a83612f122d64e81.zip busybox-b309ec71c8bac3ee19fbb0d5a83612f122d64e81.tar.gz |
Delete the patches directory from 1.0.
Diffstat (limited to 'busybox/patches/udhcpd_foreground.diff')
-rw-r--r-- | busybox/patches/udhcpd_foreground.diff | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/busybox/patches/udhcpd_foreground.diff b/busybox/patches/udhcpd_foreground.diff deleted file mode 100644 index 3b8c7eb..0000000 --- a/busybox/patches/udhcpd_foreground.diff +++ /dev/null @@ -1,33 +0,0 @@ -Index: ./networking/udhcp/dhcpd.c -=================================================================== -RCS file: /var/cvs/busybox/networking/udhcp/dhcpd.c,v -retrieving revision 1.5 -diff -u -r1.5 dhcpd.c ---- a/./networking/udhcp/dhcpd.c 30 Jan 2004 23:45:12 -0000 1.5 -+++ b/./networking/udhcp/dhcpd.c 5 Mar 2004 13:09:05 -0000 -@@ -70,6 +70,13 @@ - struct dhcpOfferedAddr *lease; - int max_sock; - unsigned long num_ips; -+ int daemonize = 1; -+ -+ while (strcmp(argv[1],"-f")==0 || strcmp(argv[1],"--foreground")==0) { -+ daemonize = 0; -+ argv++; -+ argc--; -+ } - - memset(&server_config, 0, sizeof(struct server_config_t)); - read_config(argc < 2 ? DHCPD_CONF_FILE : argv[1]); -@@ -99,9 +106,8 @@ - &server_config.server, server_config.arp) < 0) - return 1; - --#ifndef UDHCP_DEBUG -- background(server_config.pidfile); /* hold lock during fork. */ --#endif -+ if(daemonize) -+ background(server_config.pidfile); /* hold lock during fork. */ - - /* Setup the signal pipe */ - udhcp_sp_setup(); |