diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-18 20:20:07 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-18 20:20:07 +0000 |
commit | aa074b9c43f69aa62adb15e3342a0ef63f625678 (patch) | |
tree | 38d6c5d2d53841e3f4e2702521e3b03235c51017 /libpwdgrp | |
parent | e4d675d55e6d97662493d5696201db55a144db5e (diff) | |
download | busybox-w32-aa074b9c43f69aa62adb15e3342a0ef63f625678.tar.gz busybox-w32-aa074b9c43f69aa62adb15e3342a0ef63f625678.tar.bz2 busybox-w32-aa074b9c43f69aa62adb15e3342a0ef63f625678.zip |
skip_whitespace() shouldn't claim its return value is const, it doesn't know
that and callers wind up typecasting it back.
git-svn-id: svn://busybox.net/trunk/busybox@15420 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libpwdgrp')
-rw-r--r-- | libpwdgrp/pwd_grp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpwdgrp/pwd_grp.c b/libpwdgrp/pwd_grp.c index 4f4e0410f..98ecf40a3 100644 --- a/libpwdgrp/pwd_grp.c +++ b/libpwdgrp/pwd_grp.c | |||
@@ -17,6 +17,7 @@ | |||
17 | * | 17 | * |
18 | */ | 18 | */ |
19 | 19 | ||
20 | #include "libbb.h" | ||
20 | #include <features.h> | 21 | #include <features.h> |
21 | #include <stdio.h> | 22 | #include <stdio.h> |
22 | #include <stdlib.h> | 23 | #include <stdlib.h> |
@@ -27,10 +28,9 @@ | |||
27 | #include <assert.h> | 28 | #include <assert.h> |
28 | #include <ctype.h> | 29 | #include <ctype.h> |
29 | 30 | ||
30 | #include "pwd_.h" | 31 | //#include "pwd_.h" |
31 | #include "grp_.h" | 32 | //#include "grp_.h" |
32 | #include "shadow_.h" | 33 | //#include "shadow_.h" |
33 | #include "libbb.h" | ||
34 | 34 | ||
35 | #ifndef _PATH_SHADOW | 35 | #ifndef _PATH_SHADOW |
36 | #define _PATH_SHADOW "/etc/shadow" | 36 | #define _PATH_SHADOW "/etc/shadow" |