diff options
author | Matt Kraai <kraai@debian.org> | 2000-10-28 01:21:22 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-10-28 01:21:22 +0000 |
commit | b273d6651813363d95fd08686d380db8eacf87c1 (patch) | |
tree | e66b6da6af18e771e268fb6bd1b82ea043070408 /coreutils/ls.c | |
parent | c559d3077650fa2d8b8803d552342acdcf367217 (diff) | |
download | busybox-w32-b273d6651813363d95fd08686d380db8eacf87c1.tar.gz busybox-w32-b273d6651813363d95fd08686d380db8eacf87c1.tar.bz2 busybox-w32-b273d6651813363d95fd08686d380db8eacf87c1.zip |
We also need to declare info if the USERNAMES feature is enabled.
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index 4377256f6..b7329dfdf 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -433,7 +433,7 @@ void showdirs(struct dnode **dn, int ndirs) | |||
433 | { | 433 | { |
434 | int i, nfiles; | 434 | int i, nfiles; |
435 | struct dnode **subdnp; | 435 | struct dnode **subdnp; |
436 | #ifdef BB_FEATURE_LS_SORTFILES | 436 | #ifdef BB_FEATURE_LS_RECURSIVE |
437 | int dndirs; | 437 | int dndirs; |
438 | struct dnode **dnd; | 438 | struct dnode **dnd; |
439 | #endif | 439 | #endif |
@@ -529,8 +529,10 @@ int list_single(struct dnode *dn) | |||
529 | char *filetime; | 529 | char *filetime; |
530 | time_t ttime, age; | 530 | time_t ttime, age; |
531 | #endif | 531 | #endif |
532 | #ifdef BB_FEATURE_LS_FILETYPES | 532 | #if defined (BB_FEATURE_LS_FILETYPES) || defined (BB_FEATURE_LS_USERNAME) |
533 | struct stat info; | 533 | struct stat info; |
534 | #endif | ||
535 | #ifdef BB_FEATURE_LS_FILETYPES | ||
534 | char append; | 536 | char append; |
535 | #endif | 537 | #endif |
536 | 538 | ||