Changeset 2282 in MondoRescue
- Timestamp:
- Jul 20, 2009, 12:41:46 AM (16 years ago)
- 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 921 921 922 922 assert(mountlist != NULL); 923 Mr_asprintf(&tmp, "format_everything (mountlist, interactively = %s",923 mr_asprintf(&tmp, "format_everything (mountlist, interactively = %s", 924 924 (interactively) ? "true" : "false"); 925 925 log_it(tmp); -
branches/2.2.10/mondo/src/mondorestore/mondo-rstr-tools.c
r2280 r2282 232 232 mr_asprintf(&command, "grep -E '^%s$' %s", file, list_fname); 233 233 res = run_program_and_log_output(command, FALSE); 234 m t_free(command);234 mr_free(command); 235 235 paranoid_free(file); 236 236 mr_free(tmp); … … 1351 1351 /** malloc *******/ 1352 1352 char *device; 1353 char *tmp = NULL;1354 1353 char *name; 1355 1354 char *cmd = NULL; … … 2197 2196 2198 2197 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); 2200 2199 log_msg(2, "mountpt = %s; cfg_file=%s", mountpt, cfg_file); 2201 2200 mr_free(mountpt);
Note:
See TracChangeset
for help on using the changeset viewer.