start_stop_daemon: NOMMU fixes, round 2 by Alex Landau <landau_alex@yahoo.com>

dhcpc: fixed "ifupdown + udhcpc_without_pidpile_creation" bug
This commit is contained in:
Denis Vlasenko
2007-08-02 10:14:29 +00:00
parent fc77eb54e7
commit 1caca34aa6
5 changed files with 20 additions and 14 deletions

View File

@@ -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