Ignore:
Timestamp:
Jun 23, 2013, 12:34:33 AM (11 years ago)
Author:
Bruno Cornec
Message:
  • Remove the introduction of LogProgress in ListKernelModulePaths which should stay quiet
  • Remove a remaining support of max-noof-media in confidure.in now gone.
  • Fix #640 by cleaning up fully the managemnt of tmpdir and scratchdir (one function for the creation, one point of removal at end, intermediate removal if needed, clean naming conventions, unify mkdtemp usage, remove sensibly_set_tmpdir_and_scratchdir function). Consequence is that default dir for scratchdir if nothing else specified is /tmp using CLI and the largest partition using the GUI.
  • Fix a bug introduced in process_the_s_switch with intermediate variables which weren't initialized correctly.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/mondo/src/common/libmondo-raid.c

    r3060 r3154  
    10541054            raidlist->el[raidlist->entries].additional_vars.entries = v;
    10551055            // skip ':' and status
    1056             token = mr_strtok (string, delims, &lastpos);
     1056            token = mr_strtok(string, delims, &lastpos);
    10571057            if (token == NULL) {
    10581058                // should not happen !
     
    10601060            }
    10611061            mr_free(token);
    1062             token = mr_strtok (string, delims, &lastpos);
     1062            token = mr_strtok(string, delims, &lastpos);
    10631063            if (token == NULL) {
    10641064                // should not happen !
     
    10661066            }
    10671067            if (!strcmp(token, "inactive")) {
    1068                 log_msg(1, "RAID device '%s' inactive.\n",
    1069                 raidlist->el[raidlist->entries].raid_device);
     1068                log_msg(1, "RAID device '%s' inactive.\n", raidlist->el[raidlist->entries].raid_device);
    10701069                mr_free(string);
    10711070                mr_free(token);
     
    10751074
    10761075            // get RAID level
    1077             token = mr_strtok (string, delims, &lastpos);
     1076            token = mr_strtok(string, delims, &lastpos);
    10781077            if (token == NULL) {
    10791078                // should not happen !
Note: See TracChangeset for help on using the changeset viewer.