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/blkid/save.c

    r1765 r2725  
    9696        fd = mkstemp(tmp);
    9797        if (fd >= 0) {
    98             file = fdopen(fd, "w");
     98            file = xfdopen_for_write(fd);
    9999            opened = tmp;
    100100        }
     
    103103
    104104    if (!file) {
    105         file = fopen(filename, "w");
     105        file = fopen_for_write(filename);
    106106        opened = filename;
    107107    }
Note: See TracChangeset for help on using the changeset viewer.