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/ext2fs/bb_inode.c

    r1765 r2725  
    126126        goto cleanup;
    127127
    128     inode.i_atime = inode.i_mtime = time(0);
     128    inode.i_atime = inode.i_mtime = time(NULL);
    129129    if (!inode.i_ctime)
    130         inode.i_ctime = time(0);
     130        inode.i_ctime = time(NULL);
    131131    inode.i_blocks = rec.bad_block_count * (fs->blocksize / 512);
    132132    inode.i_size = rec.bad_block_count * fs->blocksize;
     
    261261    return BLOCK_CHANGED;
    262262}
    263 
    264 
    265 
    266 
    267 
    268 
Note: See TracChangeset for help on using the changeset viewer.