From 1caca34aa67b2f267d0049d17e5430ca9c58ac3f Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 2 Aug 2007 10:14:29 +0000 Subject: start_stop_daemon: NOMMU fixes, round 2 by Alex Landau dhcpc: fixed "ifupdown + udhcpc_without_pidpile_creation" bug --- include/libbb.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'include/libbb.h') diff --git a/include/libbb.h b/include/libbb.h index 547b8f798..1cbcb41e4 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -619,8 +619,9 @@ llist_t *llist_rev(llist_t *list); * llist_t *llist_add_to(llist_t *old_head, void *data) * etc does not result in smaller code... */ - -#if ENABLE_FEATURE_PIDFILE +/* start_stop_daemon and (udhcpc with ifupdown) are special - they want to + * create pidfiles regardless of FEATURE_PIDFILE. */ +#if ENABLE_FEATURE_PIDFILE || defined(WANT_PIDFILE) int write_pidfile(const char *path); #define remove_pidfile(f) ((void)unlink(f)) #else -- cgit v1.2.3