Changeset 1260 in MondoRescue


Ignore:
Timestamp:
Mar 22, 2007, 12:04:53 AM (17 years ago)
Author:
Bruno Cornec
Message:
  • ChangeLog updated
  • More precision for an opendir error message
Location:
branches/2.2.2
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.2/mindi-busybox/ChangeLog

    r1236 r1260  
    33MINDI-BUSYBOX CHANGES
    44
    5 1.2.3 (2007-03-08)
     51.2.2-2 (2007-03-08)
    66- Improve Gentoo packaging (Linos)
    77
  • branches/2.2.2/mindi/ChangeLog

    r1236 r1260  
    44
    551.2.2 (2007-03-08)
     6- Add support for raid456 driver (Mark Nienberg/Bruno Cornec)
    67- Add the DENY_MODS variable in mindi allowing to describes modules that you don't want to include as part of the restore boot environment (HP Open Call OCMP e.g; needs it) (Bruno Cornec)
    78- Add GetInitrdFilesystemToUse function to support initramfs type of initrd (SuSE 10.2/Debian 3.x/FC 6/...) (Andree Leidenfrost)
  • branches/2.2.2/mondo/ChangeLog

    r1236 r1260  
    44
    552.2.2 (2007-03-08)
     6- Fix a bug on is_this_raid_personality_registered (John Pearson/Bruno Cornec)
     7- Fix a bug with raid5 arrays synchronization (Rémi Bondoin)
     8- Tape support improvements (Benoit Donnette/Michel Loiseleur)
    69- Handle no compression + verify correctly (Scott Cummings)
    710- various HOWTO fixes (Mike Kinney)
  • branches/2.2.2/mondo/src/common/libmondo-filelist.c

    r1236 r1260  
    15651565    sprintf(new_with_spaces, " %s ", dir);
    15661566    if ((dip = opendir(dir)) == NULL) {
    1567         log_OS_error("opendir");
     1567        sprintf(tmp,"opendir %s", dir);
     1568        log_OS_error(tmp);
    15681569    } else if (strstr(skip_these, new_with_spaces)) {
    15691570        fprintf(fout, "%s\n", dir); // if excluded dir then print dir ONLY
Note: See TracChangeset for help on using the changeset viewer.