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/util.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/util.c')
-rw-r--r-- | e2fsprogs/util.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/e2fsprogs/util.c b/e2fsprogs/util.c index efb128f..aaee50a 100644 --- a/e2fsprogs/util.c +++ b/e2fsprogs/util.c @@ -33,13 +33,8 @@ void proceed_question(void) void check_plausibility(const char *device, int force) { int val; -#ifdef CONFIG_LFS - struct stat64 s; - val = stat64(device, &s); -#else - struct stat s; - val = stat(device, &s); -#endif + STRUCT_STAT s; + val = STAT(device, &s); if (force) return; if(val == -1) |