mjn3 noticed that crond and crontab had #include <pwd.h> and #include <grp.h>
authorEric Andersen <andersen@codepoet.org>
Tue, 22 Oct 2002 20:08:51 +0000 (20:08 -0000)
committerEric Andersen <andersen@codepoet.org>
Tue, 22 Oct 2002 20:08:51 +0000 (20:08 -0000)
but this conflicted with the internal pwd_.h and grp_.h.  Removing these
headers is correct, since the correct pwd/grp headers will be included via
busybox.h
 -Erik

miscutils/crond.c
miscutils/crontab.c

index 225d502..8ae54a5 100644 (file)
@@ -22,9 +22,7 @@
 #include <time.h>
 #include <dirent.h>
 #include <fcntl.h>
-#include <pwd.h>
 #include <unistd.h>
-#include <grp.h>
 #include <syslog.h>
 #include <signal.h>
 #include <getopt.h>
index c869906..4263d48 100644 (file)
@@ -18,9 +18,7 @@
 #include <time.h>
 #include <dirent.h>
 #include <fcntl.h>
-#include <pwd.h>
 #include <unistd.h>
-#include <grp.h>
 #include <syslog.h>
 #include <signal.h>
 #include <getopt.h>