Ignore:
Timestamp:
Oct 1, 2007, 12:50:28 PM (17 years ago)
Author:
Bruno Cornec
Message:
  • Try to fix the issue with large exclude list (> 1000 chars) Some variables created after exclude_path (indirectly) were not sized big enough to handle them.
  • Remove useless .keep file
  • remove temporary.iso name remaining and suppress a warning in log trying to remove it in the tmpdir
  • missing extern bkpinfo in newt-specific.c
  • Attempt to fix #191 (allow edition of mountlist in compare mode)

(merge -r1662:1669 $SVN_M/branches/2.2.5)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/common/libmondo-tools.c

    r1669 r1670  
    488488            if (bkpinfo->call_before_iso[0] == '\0') {
    489489                sprintf(bkpinfo->call_before_iso,
    490                         "%s %s -o %s/temporary.iso . 2>> %s",
     490                        "%s %s -o %s/"MONDO_TMPISOS" . 2>> %s",
    491491                        mr_conf->iso_creation_cmd,mondo_mkisofs_sz, bkpinfo->tmpdir, MONDO_LOGFILE);
    492492            } else {
    493493                mr_asprintf(&call_before_iso_user, bkpinfo->call_before_iso);
    494494                sprintf (bkpinfo->call_before_iso,
    495                                     "(%s %s -o %s/temporary.iso . 2>> %s ; %s )",
     495                                    "(%s %s -o %s/"MONDO_TMPISOS" . 2>> %s ; %s )",
    496496                        mr_conf->iso_creation_cmd,mondo_mkisofs_sz, bkpinfo->tmpdir, MONDO_LOGFILE, call_before_iso_user);
    497497                mr_free(call_before_iso_user);
     
    499499            log_it("bkpinfo->call_before_iso = %s", bkpinfo->call_before_iso);
    500500            sprintf(bkpinfo->call_make_iso,
    501                     "%s %s %s dev=%s speed=%d %s/temporary.iso",
     501                    "%s %s %s dev=%s speed=%d %s/"MONDO_TMPISOS,
    502502                    mr_conf->iso_burning_cmd,
    503503                    extra_cdrom_params,
Note: See TracChangeset for help on using the changeset viewer.