aboutsummaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorsandman <sandman@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-06-04 20:10:23 +0000
committersandman <sandman@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-06-04 20:10:23 +0000
commit833593c5b14bd14e14180776f15a8368f1a5f5dd (patch)
tree3a71fbfa44c5a0887409c930a682c896aecb7425 /init
parent594f51c1b93a4e0b10d23cb5f23deb3ce10bab08 (diff)
downloadbusybox-w32-833593c5b14bd14e14180776f15a8368f1a5f5dd.tar.gz
busybox-w32-833593c5b14bd14e14180776f15a8368f1a5f5dd.tar.bz2
busybox-w32-833593c5b14bd14e14180776f15a8368f1a5f5dd.zip
Fix for broken handling off BusyBox's own pwd/grp implementations
[Parts of this patch may overlap with my other two patches] git-svn-id: svn://busybox.net/trunk/busybox@4856 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'init')
-rw-r--r--init/start_stop_daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/start_stop_daemon.c b/init/start_stop_daemon.c
index ed4503caf..29e3d8673 100644
--- a/init/start_stop_daemon.c
+++ b/init/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
23static int start = 0; 23static int start = 0;
24static int stop = 0; 24static int stop = 0;