diff options
author | Rob Landley <rob@landley.net> | 2006-06-18 20:20:07 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-06-18 20:20:07 +0000 |
commit | ea224be6aa8fed5486376d3021a4cb911e935106 (patch) | |
tree | 38d6c5d2d53841e3f4e2702521e3b03235c51017 /libpwdgrp | |
parent | 14d7065ef1eb836d20e13bc25d1b13f0e76185ac (diff) | |
download | busybox-w32-ea224be6aa8fed5486376d3021a4cb911e935106.tar.gz busybox-w32-ea224be6aa8fed5486376d3021a4cb911e935106.tar.bz2 busybox-w32-ea224be6aa8fed5486376d3021a4cb911e935106.zip |
skip_whitespace() shouldn't claim its return value is const, it doesn't know
that and callers wind up typecasting it back.
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" |