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/util-linux/rdate.c

    r1765 r2725  
    66 * by Sterling Huxley <sterling@europa.com>
    77 *
    8  * Licensed under GPL v2 or later, see file License for details.
     8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
    99*/
    1010
     
    1313enum { RFC_868_BIAS = 2208988800UL };
    1414
    15 static void socket_timeout(int sig)
     15static void socket_timeout(int sig UNUSED_PARAM)
    1616{
    1717    bb_error_msg_and_die("timeout connecting to time server");
     
    4343}
    4444
    45 int rdate_main(int argc, char **argv);
    46 int rdate_main(int argc, char **argv)
     45int rdate_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
     46int rdate_main(int argc UNUSED_PARAM, char **argv)
    4747{
    4848    time_t remote_time;
     
    6262        else
    6363            if (stime(&remote_time) < 0)
    64                 bb_perror_msg_and_die("cannot set time of day");
     64                bb_perror_msg_and_die("can't set time of day");
    6565    }
    6666
Note: See TracChangeset for help on using the changeset viewer.