Changeset 3037 in MondoRescue


Ignore:
Timestamp:
Oct 1, 2012, 4:49:10 PM (12 years ago)
Author:
Bruno Cornec
Message:
  • Fix #623 by adopting Marertin's and Didier's patch in order to sort correctly the dev mapper devices when more than 10 are handled (was not recreating them correctly at restore time)
Location:
branches/3.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/mindi/analyze-my-lvm

    r3029 r3037  
    296296    done
    297297    if [ -f $MINDI_TMP/sorteddm ]; then
    298         sort -t'|' -n $MINDI_TMP/sorteddm | cut -d'|' -f2
     298        cut -d'-' -f2- $MINDI_TMP/sorteddm | sort -t'|' -n | cut -d'|' -f2
    299299    fi
    300300}
  • branches/3.0/mondo/src/common/libmondo-fork.c

    r3034 r3037  
    3737{
    3838    /*@ buffers ***************************************************** */
    39     static char result[512];
     39    static char result[MAX_STR_LEN];
    4040    char *tmp;
    4141
Note: See TracChangeset for help on using the changeset viewer.