Changeset 2341 in MondoRescue for branches/2.2.10/mondo/src/common


Ignore:
Timestamp:
Aug 21, 2009, 2:50:32 AM (15 years ago)
Author:
Bruno Cornec
Message:
  • Option -Y documented for mondoarchive
  • New Log* functions in mindi
  • Fix bug in the function dealing with % analysis
  • Still trying to improve screen display globally
Location:
branches/2.2.10/mondo/src/common
Files:
2 edited

Legend:

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

    r2338 r2341  
    545545    }
    546546
    547     mvaddstr_and_log_it(g_currentY, 0, "Calling MINDI to create boot+data disks");
    548547    mr_asprintf(tmp, "%s/filelist.full", bkpinfo->tmpdir);
    549548    if (!does_file_exist(tmp)) {
     
    84083911=\"%s\" 12=%s 13=%ld 14=\"%s\" 15=\"%s\" 16=\"%s\" 17=\"%s\" 18=%ld 19=%d",*/
    841840    mr_asprintf(command, "mindi %s --custom %s %s/images '%s' '%s' '%s' %ld '%s' '%s' '%s' \
    842 '%s' %s %ld '%s' '%s' '%s' '%s' %ld %d '%s' >> %s",
     841'%s' %s %ld '%s' '%s' '%s' '%s' %ld %d '%s' '%s' >> %s",
    843842            tmp2,               // parameter #1
    844843            bkpinfo->tmpdir,    // parameter #2
     
    886885//  popup_and_OK("Pausing");
    887886
     887    mvaddstr_and_log_it(g_currentY, 0, "Calling MINDI to create boot+data disks");
    888888    res = run_external_binary_with_percentage_indicator_NEW("Generating boot+data disks", command);
    889889    paranoid_free(command);
  • branches/2.2.10/mondo/src/common/libmondo-files.c

    r2338 r2341  
    448448    }
    449449
    450     for (p--; isdigit(p) && p != lastline; p--);
     450    for (p--; isdigit(*p) && p != lastline; p--);
    451451    if (p != lastline) {
    452452        p++;
Note: See TracChangeset for help on using the changeset viewer.