diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-10-22 20:08:51 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-10-22 20:08:51 +0000 |
commit | 080ddc1c199743fe2f46db5e877157cff602c93f (patch) | |
tree | 8f7f7b07b83d86368295dda46e91f9b1446017a7 | |
parent | 5e02c67331a12e710aefd2fbdde06b671c306df7 (diff) | |
download | busybox-w32-080ddc1c199743fe2f46db5e877157cff602c93f.tar.gz busybox-w32-080ddc1c199743fe2f46db5e877157cff602c93f.tar.bz2 busybox-w32-080ddc1c199743fe2f46db5e877157cff602c93f.zip |
mjn3 noticed that crond and crontab had #include <pwd.h> and #include <grp.h>
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
-rw-r--r-- | miscutils/crond.c | 2 | ||||
-rw-r--r-- | miscutils/crontab.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/miscutils/crond.c b/miscutils/crond.c index 225d5026c..8ae54a536 100644 --- a/miscutils/crond.c +++ b/miscutils/crond.c | |||
@@ -22,9 +22,7 @@ | |||
22 | #include <time.h> | 22 | #include <time.h> |
23 | #include <dirent.h> | 23 | #include <dirent.h> |
24 | #include <fcntl.h> | 24 | #include <fcntl.h> |
25 | #include <pwd.h> | ||
26 | #include <unistd.h> | 25 | #include <unistd.h> |
27 | #include <grp.h> | ||
28 | #include <syslog.h> | 26 | #include <syslog.h> |
29 | #include <signal.h> | 27 | #include <signal.h> |
30 | #include <getopt.h> | 28 | #include <getopt.h> |
diff --git a/miscutils/crontab.c b/miscutils/crontab.c index c86990653..4263d48dd 100644 --- a/miscutils/crontab.c +++ b/miscutils/crontab.c | |||
@@ -18,9 +18,7 @@ | |||
18 | #include <time.h> | 18 | #include <time.h> |
19 | #include <dirent.h> | 19 | #include <dirent.h> |
20 | #include <fcntl.h> | 20 | #include <fcntl.h> |
21 | #include <pwd.h> | ||
22 | #include <unistd.h> | 21 | #include <unistd.h> |
23 | #include <grp.h> | ||
24 | #include <syslog.h> | 22 | #include <syslog.h> |
25 | #include <signal.h> | 23 | #include <signal.h> |
26 | #include <getopt.h> | 24 | #include <getopt.h> |