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/mkjournal.c

    r1765 r2725  
    9696{
    9797    errcode_t   retval;
    98     char        *buf = 0;
     98    char        *buf = NULL;
    9999    int     fd, ret_size;
    100100    blk_t       i;
     
    189189    else
    190190        return BLOCK_CHANGED;
    191 
    192191}
    193192
     
    232231    inode.i_size += fs->blocksize * size;
    233232    inode.i_blocks += (fs->blocksize / 512) * es.newblocks;
    234     inode.i_mtime = inode.i_ctime = time(0);
     233    inode.i_mtime = inode.i_ctime = time(NULL);
    235234    inode.i_links_count = 1;
    236235    inode.i_mode = LINUX_S_IFREG | 0600;
     
    424423    ext2fs_close(fs);
    425424    exit(0);
    426 
    427 }
    428 #endif
     425}
     426#endif
Note: See TracChangeset for help on using the changeset viewer.