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/libbb/mode_string.c

    r1765 r2725  
    55 * Copyright (C) 2003  Manuel Novoa III  <mjn3@codepoet.org>
    66 *
    7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
     7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
    88 */
    99
     
    4949 * and 'B' types don't appear to be available on linux.  So I removed them. */
    5050static const char type_chars[16] ALIGN1 = "?pc?d?b?-?l?s???";
    51 /*                                  0123456789abcdef */
     51/***************************************** 0123456789abcdef */
    5252static const char mode_chars[7] ALIGN1 = "rwxSTst";
    5353
    54 const char *bb_mode_string(mode_t mode)
     54const char* FAST_FUNC bb_mode_string(mode_t mode)
    5555{
    5656    static char buf[12];
     
    8989 * and 'B' types don't appear to be available on linux.  So I removed them. */
    9090static const char type_chars[16] = "?pc?d?b?-?l?s???";
    91 /*                                  0123456789abcdef */
     91/********************************** 0123456789abcdef */
    9292static const char mode_chars[7] = "rwxSTst";
    9393
    94 const char *bb_mode_string(mode_t mode)
     94const char* FAST_FUNC bb_mode_string(mode_t mode)
    9595{
    9696    static char buf[12];
Note: See TracChangeset for help on using the changeset viewer.