diff options
author | Denis Vlasenko | 2006-10-07 16:24:46 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-07 16:24:46 +0000 |
commit | 5625415085e68ac5e150f54e685417c866620d76 (patch) | |
tree | 4146667d4080f97bc39ac96d844c01a8956aeeca /e2fsprogs/chattr.c | |
parent | 890ac9deb2cc57cadd7aba4ee91bd012e19e239d (diff) | |
download | busybox-5625415085e68ac5e150f54e685417c866620d76.zip busybox-5625415085e68ac5e150f54e685417c866620d76.tar.gz |
dd: make it recognize not only 'k' but 'K' too;
make it (partially) CONFIG_LFS-aware
Diffstat (limited to 'e2fsprogs/chattr.c')
-rw-r--r-- | e2fsprogs/chattr.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/e2fsprogs/chattr.c b/e2fsprogs/chattr.c index 2cb75e8..618d8c4 100644 --- a/e2fsprogs/chattr.c +++ b/e2fsprogs/chattr.c @@ -53,14 +53,6 @@ static unsigned long af; static unsigned long rf; static unsigned long sf; -#ifdef CONFIG_LFS -# define LSTAT lstat64 -# define STRUCT_STAT struct stat64 -#else -# define LSTAT lstat -# define STRUCT_STAT struct stat -#endif - struct flags_char { unsigned long flag; char optchar; |