Ignore:
Timestamp:
Mar 12, 2007, 12:23:16 AM (17 years ago)
Author:
Bruno Cornec
Message:

Port from stable important patches for 2.2.2:
mindi-busybox:

  • Improve Gentoo packaging

mindi:

  • Better messages for analyze-my-lvm
  • Add support for newer Qlogic drivers (qla2300 & 2400), mpt, dm and ohci
  • Fix a bug in mindi for the FAILSAFE support
  • PATH fixed for init in restore (/usr/games added for petris)
  • Fiw a bug where restore failing because no archive files are found when -G is used
  • /media is now completely excluded as per StandardsCompliance

mondo:

  • Handle no compression + verify correctly
  • various HOWTO fixes
  • Fix temporarily a bug when a biggiefile > 32MB was compressed below the size

of a slice (16MB)

  • Better module loading in insmod_crucial_modules
  • Improve Gentoo packaging
  • Small typo fix for mondorestore man page
  • Small memory management improvements
  • Store NFS config only once
  • Fix a flaw in libmondo-mountlist.c (there since rev [1] !!)
  • Increased MAX_STR_LEN to 384 to make it divisible without remainder by eight

for 64 bits platforms

  • Fix a bug where no bzip2 format file would be found when supporting gzip
  • CentOS fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.2/mondo/src/common/libmondo-files.c

    r1002 r1236  
    12451245    strcpy(nfs_server_ipaddr, tmp);
    12461246    strcpy(nfs_mount, p);
     1247
    12471248    /* BERLIOS : there is a bug #67 here as it only considers the first NIC */
    12481249    sprintf(command,
     
    14171418    char tmp[MAX_STR_LEN];
    14181419    char *p;
     1420    char *q = NULL;
     1421
     1422    q = strrchr(filename, '.');
     1423    if (q == NULL) {
     1424        return (FALSE);
     1425    }
    14191426
    14201427    sprintf(tmp, "%s/do-not-compress-these", g_mondo_home);
     
    14221429        return (FALSE);
    14231430    }
    1424     strcpy(do_not_compress_these, last_line_of_file(tmp));
     1431    /* BERLIOS: This is just plain WRONG !! */
     1432    strcpy(do_not_compress_these,last_line_of_file(tmp));
     1433
    14251434    for (p = do_not_compress_these; p != NULL; p++) {
    14261435        strcpy(tmp, p);
     
    14281437            *(strchr(tmp, ' ')) = '\0';
    14291438        }
    1430         if (!strcmp(sz_last_suffix(filename), tmp)) {   /*printf("MATCH\n"); */
     1439        if (!strcmp(q, tmp)) {
    14311440            return (TRUE);
    14321441        }
Note: See TracChangeset for help on using the changeset viewer.