diff options
author | sandman <sandman@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-06-04 20:10:23 +0000 |
---|---|---|
committer | sandman <sandman@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-06-04 20:10:23 +0000 |
commit | 833593c5b14bd14e14180776f15a8368f1a5f5dd (patch) | |
tree | 3a71fbfa44c5a0887409c930a682c896aecb7425 /libbb | |
parent | 594f51c1b93a4e0b10d23cb5f23deb3ce10bab08 (diff) | |
download | busybox-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 'libbb')
-rw-r--r-- | libbb/my_getgrgid.c | 2 | ||||
-rw-r--r-- | libbb/my_getgrnam.c | 2 | ||||
-rw-r--r-- | libbb/my_getpwnam.c | 2 | ||||
-rw-r--r-- | libbb/my_getpwnamegid.c | 2 | ||||
-rw-r--r-- | libbb/my_getpwuid.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/libbb/my_getgrgid.c b/libbb/my_getgrgid.c index 27b671922..bf2067e46 100644 --- a/libbb/my_getgrgid.c +++ b/libbb/my_getgrgid.c | |||
@@ -21,9 +21,9 @@ | |||
21 | 21 | ||
22 | #include <stdio.h> | 22 | #include <stdio.h> |
23 | #include <string.h> | 23 | #include <string.h> |
24 | #include "libbb.h" | ||
24 | #include "pwd.h" | 25 | #include "pwd.h" |
25 | #include "grp.h" | 26 | #include "grp.h" |
26 | #include "libbb.h" | ||
27 | 27 | ||
28 | 28 | ||
29 | /* gets a groupname given a gid */ | 29 | /* gets a groupname given a gid */ |
diff --git a/libbb/my_getgrnam.c b/libbb/my_getgrnam.c index dbacf5192..f21d482c6 100644 --- a/libbb/my_getgrnam.c +++ b/libbb/my_getgrnam.c | |||
@@ -21,9 +21,9 @@ | |||
21 | 21 | ||
22 | #include <stdio.h> | 22 | #include <stdio.h> |
23 | #include <string.h> | 23 | #include <string.h> |
24 | #include "libbb.h" | ||
24 | #include "pwd.h" | 25 | #include "pwd.h" |
25 | #include "grp.h" | 26 | #include "grp.h" |
26 | #include "libbb.h" | ||
27 | 27 | ||
28 | 28 | ||
29 | /* returns a gid given a group name */ | 29 | /* returns a gid given a group name */ |
diff --git a/libbb/my_getpwnam.c b/libbb/my_getpwnam.c index 90277040e..db7f4a65f 100644 --- a/libbb/my_getpwnam.c +++ b/libbb/my_getpwnam.c | |||
@@ -21,9 +21,9 @@ | |||
21 | 21 | ||
22 | #include <stdio.h> | 22 | #include <stdio.h> |
23 | #include <string.h> | 23 | #include <string.h> |
24 | #include "libbb.h" | ||
24 | #include "pwd.h" | 25 | #include "pwd.h" |
25 | #include "grp.h" | 26 | #include "grp.h" |
26 | #include "libbb.h" | ||
27 | 27 | ||
28 | 28 | ||
29 | /* returns a uid given a username */ | 29 | /* returns a uid given a username */ |
diff --git a/libbb/my_getpwnamegid.c b/libbb/my_getpwnamegid.c index 9c45580b5..4866b9717 100644 --- a/libbb/my_getpwnamegid.c +++ b/libbb/my_getpwnamegid.c | |||
@@ -21,9 +21,9 @@ | |||
21 | 21 | ||
22 | #include <stdio.h> | 22 | #include <stdio.h> |
23 | #include <string.h> | 23 | #include <string.h> |
24 | #include "libbb.h" | ||
24 | #include "pwd.h" | 25 | #include "pwd.h" |
25 | #include "grp.h" | 26 | #include "grp.h" |
26 | #include "libbb.h" | ||
27 | 27 | ||
28 | 28 | ||
29 | 29 | ||
diff --git a/libbb/my_getpwuid.c b/libbb/my_getpwuid.c index 49bc8fb49..5236c7df3 100644 --- a/libbb/my_getpwuid.c +++ b/libbb/my_getpwuid.c | |||
@@ -21,9 +21,9 @@ | |||
21 | 21 | ||
22 | #include <stdio.h> | 22 | #include <stdio.h> |
23 | #include <string.h> | 23 | #include <string.h> |
24 | #include "libbb.h" | ||
24 | #include "pwd.h" | 25 | #include "pwd.h" |
25 | #include "grp.h" | 26 | #include "grp.h" |
26 | #include "libbb.h" | ||
27 | 27 | ||
28 | 28 | ||
29 | 29 | ||