diff options
author | "Robert P. J. Day" <rpjday@mindspring.com> | 2006-07-01 14:52:12 +0000 |
---|---|---|
committer | "Robert P. J. Day" <rpjday@mindspring.com> | 2006-07-01 14:52:12 +0000 |
commit | edd9ca574327205933f23205d7051f613e46b23b (patch) | |
tree | d88d2f2f16e9bbb8bf03943d4d1e9dd4c717b24e /libpwdgrp | |
parent | 53f21e34a7765c74afab1a8867f4965fb981edb7 (diff) | |
download | busybox-edd9ca574327205933f23205d7051f613e46b23b.tar.gz |
More removal of "#if 0" content.
Diffstat (limited to 'libpwdgrp')
-rw-r--r-- | libpwdgrp/pwd_grp.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libpwdgrp/pwd_grp.c b/libpwdgrp/pwd_grp.c index 05b83d66d..a09b5a6c0 100644 --- a/libpwdgrp/pwd_grp.c +++ b/libpwdgrp/pwd_grp.c @@ -988,19 +988,6 @@ int __parsespent(void *data, char * line) break; } } else { -#if 0 - if (i==5) { /* Support for old format. */ - while (isspace(*line)) ++line; /* glibc eats space here. */ - if (!*line) { - ((struct spwd *) data)->sp_warn = -1; - ((struct spwd *) data)->sp_inact = -1; - ((struct spwd *) data)->sp_expire = -1; - ((struct spwd *) data)->sp_flag = ~0UL; - return 0; - } - } -#endif - *((long *) p) = (long) strtoul(line, &endptr, 10); if (endptr == line) { |