Changeset 2588 in MondoRescue


Ignore:
Timestamp:
Mar 3, 2010, 8:24:30 PM (14 years ago)
Author:
Bruno Cornec
Message:

r3715@localhost: bruno | 2010-03-03 11:01:10 +0100

  • Fix compilation issue brought by previous patch
  • Avoid messages on screen for mindi due to previous patch
Location:
branches/2.2.10
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.10/mindi/mindi

    r2587 r2588  
    751751            fi
    752752        else
    753             [ -f "$r" ] && echo "$r"
     753            [ -f "$r" ] && echo "$r" >> $outfile
    754754        fi
    755755        LogFile "module $module --> $r"
  • branches/2.2.10/mondo/src/common/libmondo-devices.c

    r2546 r2588  
    19521952        if (mode == 'E') {
    19531953            /*  Add the token if not already in the list */
    1954             mr_asprintf(&tmp,"%s ",bkpinfo->exclude_paths);
     1954            mr_asprintf(tmp,"%s ",bkpinfo->exclude_paths);
    19551955            if (strstr(tmp,tmp1) == NULL) {
    19561956                mr_strcat(bkpinfo->exclude_paths, " %s", tmp1);
     
    19581958        } else {
    19591959            /*  Add the token if not already in the list */
    1960             mr_asprintf(&tmp,"%s ",bkpinfo->include_paths);
     1960            mr_asprintf(tmp,"%s ",bkpinfo->include_paths);
    19611961            if (strstr(tmp,tmp1) == NULL) {
    19621962                mr_strcat(bkpinfo->include_paths, " %s", tmp1);
Note: See TracChangeset for help on using the changeset viewer.