Changeset 3232 in MondoRescue for branches/3.2/mindi-busybox/libbb/copy_file.c


Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/libbb/copy_file.c

    r2725 r3232  
    7979    struct stat source_stat;
    8080    struct stat dest_stat;
    81     signed char retval = 0;
    82     signed char dest_exists = 0;
    83     signed char ovr;
     81    smallint retval = 0;
     82    smallint dest_exists = 0;
     83    smallint ovr;
    8484
    8585/* Inverse of cp -d ("cp without -d") */
     
    148148        }
    149149
    150         /* Create DEST */
    151150        if (dest_exists) {
    152151            if (!S_ISDIR(dest_stat.st_mode)) {
     
    157156             * this check and actual creation of files inside dest */
    158157        } else {
     158            /* Create DEST */
    159159            mode_t mode;
    160160            saved_umask = umask(0);
Note: See TracChangeset for help on using the changeset viewer.