diff options
author | Robert Griebl <griebl@gmx.de> | 2002-06-04 20:10:23 +0000 |
---|---|---|
committer | Robert Griebl <griebl@gmx.de> | 2002-06-04 20:10:23 +0000 |
commit | ea1a63a2011a44b143cc46c7d80a8152f5358e24 (patch) | |
tree | 3a71fbfa44c5a0887409c930a682c896aecb7425 /debianutils | |
parent | c9aca4561ddb1165890fae0c8b921a2504c6273f (diff) | |
download | busybox-w32-ea1a63a2011a44b143cc46c7d80a8152f5358e24.tar.gz busybox-w32-ea1a63a2011a44b143cc46c7d80a8152f5358e24.tar.bz2 busybox-w32-ea1a63a2011a44b143cc46c7d80a8152f5358e24.zip |
Fix for broken handling off BusyBox's own pwd/grp implementations
[Parts of this patch may overlap with my other two patches]
Diffstat (limited to 'debianutils')
-rw-r--r-- | debianutils/start_stop_daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c index ed4503caf..29e3d8673 100644 --- a/debianutils/start_stop_daemon.c +++ b/debianutils/start_stop_daemon.c | |||
@@ -16,9 +16,9 @@ | |||
16 | #include <sys/stat.h> | 16 | #include <sys/stat.h> |
17 | #include <dirent.h> | 17 | #include <dirent.h> |
18 | #include <unistd.h> | 18 | #include <unistd.h> |
19 | #include "pwd.h" | ||
20 | 19 | ||
21 | #include "busybox.h" | 20 | #include "busybox.h" |
21 | #include "pwd.h" | ||
22 | 22 | ||
23 | static int start = 0; | 23 | static int start = 0; |
24 | static int stop = 0; | 24 | static int stop = 0; |