diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-02 10:14:29 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-02 10:14:29 +0000 |
commit | 1caca34aa67b2f267d0049d17e5430ca9c58ac3f (patch) | |
tree | b03a3218a2a96fa201bab6e7a58c9ad6b208c302 /include | |
parent | fc77eb54e791c7d636c20993ec81396052af84f0 (diff) | |
download | busybox-w32-1caca34aa67b2f267d0049d17e5430ca9c58ac3f.tar.gz busybox-w32-1caca34aa67b2f267d0049d17e5430ca9c58ac3f.tar.bz2 busybox-w32-1caca34aa67b2f267d0049d17e5430ca9c58ac3f.zip |
start_stop_daemon: NOMMU fixes, round 2 by Alex Landau <landau_alex@yahoo.com>
dhcpc: fixed "ifupdown + udhcpc_without_pidpile_creation" bug
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 5 |
1 files changed, 3 insertions, 2 deletions
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); | |||
619 | * llist_t *llist_add_to(llist_t *old_head, void *data) | 619 | * llist_t *llist_add_to(llist_t *old_head, void *data) |
620 | * etc does not result in smaller code... */ | 620 | * etc does not result in smaller code... */ |
621 | 621 | ||
622 | 622 | /* start_stop_daemon and (udhcpc with ifupdown) are special - they want to | |
623 | #if ENABLE_FEATURE_PIDFILE | 623 | * create pidfiles regardless of FEATURE_PIDFILE. */ |
624 | #if ENABLE_FEATURE_PIDFILE || defined(WANT_PIDFILE) | ||
624 | int write_pidfile(const char *path); | 625 | int write_pidfile(const char *path); |
625 | #define remove_pidfile(f) ((void)unlink(f)) | 626 | #define remove_pidfile(f) ((void)unlink(f)) |
626 | #else | 627 | #else |