Changeset 2282 in MondoRescue


Ignore:
Timestamp:
Jul 20, 2009, 12:41:46 AM (15 years ago)
Author:
Bruno Cornec
Message:

r3279@localhost: bruno | 2009-07-20 00:29:15 +0200
Fix mondo compilation and link

Location:
branches/2.2.10/mondo/src/mondorestore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.10/mondo/src/mondorestore/mondo-prep.c

    r2281 r2282  
    921921
    922922    assert(mountlist != NULL);
    923     Mr_asprintf(&tmp, "format_everything (mountlist, interactively = %s",
     923    mr_asprintf(&tmp, "format_everything (mountlist, interactively = %s",
    924924            (interactively) ? "true" : "false");
    925925    log_it(tmp);
  • branches/2.2.10/mondo/src/mondorestore/mondo-rstr-tools.c

    r2280 r2282  
    232232mr_asprintf(&command, "grep -E '^%s$' %s", file, list_fname);
    233233res = run_program_and_log_output(command, FALSE);
    234 mt_free(command);
     234mr_free(command);
    235235paranoid_free(file);
    236236mr_free(tmp);
     
    13511351  /** malloc *******/
    13521352    char *device;
    1353     char *tmp = NULL;
    13541353    char *name;
    13551354    char *cmd = NULL;
     
    21972196
    21982197    mr_asprintf(&cfg_file, "%s/%s", bkpinfo->tmpdir, MONDO_CFG_FILE_STUB);
    2199     mr_asprintf(^mountlist_file, "%s/%s", bkpinfo->tmpdir, MOUNTLIST_FNAME_STUB);
     2198    mr_asprintf(&mountlist_file, "%s/%s", bkpinfo->tmpdir, MOUNTLIST_FNAME_STUB);
    22002199    log_msg(2, "mountpt = %s; cfg_file=%s", mountpt, cfg_file);
    22012200    mr_free(mountpt);
Note: See TracChangeset for help on using the changeset viewer.