Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/e2fsprogs/old_e2fsprogs/lsattr.c

    r1765 r2725  
    1313/*
    1414 * History:
    15  * 93/10/30 - Creation
    16  * 93/11/13 - Replace stat() calls by lstat() to avoid loops
    17  * 94/02/27 - Integrated in Ted's distribution
    18  * 98/12/29 - Display version info only when -V specified (G M Sipe)
     15 * 93/10/30 - Creation
     16 * 93/11/13 - Replace stat() calls by lstat() to avoid loops
     17 * 94/02/27 - Integrated in Ted's distribution
     18 * 98/12/29 - Display version info only when -V specified (G M Sipe)
    1919 */
    2020
     
    5757    if (flags & OPT_PF_LONG) {
    5858        printf("%-28s ", name);
    59         print_flags(stdout, fsflags, PFOPT_LONG);
    60         puts("");
     59        print_e2flags(stdout, fsflags, PFOPT_LONG);
     60        bb_putchar('\n');
    6161    } else {
    62         print_flags(stdout, fsflags, 0);
     62        print_e2flags(stdout, fsflags, 0);
    6363        printf(" %s\n", name);
    6464    }
     
    103103                printf("\n%s:\n", path);
    104104                iterate_on_dir(path, lsattr_dir_proc, NULL);
    105                 puts("");
     105                bb_putchar('\n');
    106106            }
    107107        }
     
    113113}
    114114
    115 int lsattr_main(int argc, char **argv);
     115int lsattr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
    116116int lsattr_main(int argc, char **argv)
    117117{
Note: See TracChangeset for help on using the changeset viewer.