Ignore:
Timestamp:
Apr 15, 2007, 1:57:44 AM (17 years ago)
Author:
Bruno Cornec
Message:
  • RAM size needs to be bigger on FC6
  • Attempt to fix a core dumped when a Big file doesn't exist and we're unable to create it (report from Nic Watson mondo_at_nicwatson.org)
  • NFS needs the fscache module on FC6 (at least)
  • Use build_partition_name and remove superfluous test (still try to solve cciss gap issue)
File:
1 edited

Legend:

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

    r1256 r1302  
    20982098        if (!does_file_exist(bigfile_fname)) {
    20992099            ftmp = fopen(bigfile_fname, "w");
    2100             paranoid_fclose(ftmp);
     2100            if (ftmp == NULL) {
     2101                mr_msg(3, "Unable to write to %s", bigfile_fname);
     2102                // So skip it as it doesn't exist
     2103                continue;
     2104            } else {
     2105                paranoid_fclose(ftmp);
     2106            }
    21012107            delete_when_done = TRUE;
    21022108        } else {
Note: See TracChangeset for help on using the changeset viewer.