Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/util-linux/rdate.c

    r3232 r3621  
    1212//usage:       "[-sp] HOST"
    1313//usage:#define rdate_full_usage "\n\n"
    14 //usage:       "Get and possibly set the system date/time from a remote HOST\n"
    15 //usage:     "\n    -s  Set the system date/time (default)"
    16 //usage:     "\n    -p  Print the date/time"
     14//usage:       "Get and possibly set system time from a remote HOST\n"
     15//usage:     "\n    -s  Set system time (default)"
     16//usage:     "\n    -p  Print time"
    1717
    1818#include "libbb.h"
     
    3737
    3838    if (safe_read(fd, &nett, 4) != 4)    /* read time from server */
    39         bb_error_msg_and_die("%s did not send the complete time", host);
     39        bb_error_msg_and_die("%s: %s", host, "short read");
    4040    if (ENABLE_FEATURE_CLEAN_UP)
    4141        close(fd);
Note: See TracChangeset for help on using the changeset viewer.