Changeset 1551 in MondoRescue
- Timestamp:
- Jul 24, 2007, 3:21:48 PM (18 years ago)
- Location:
- branches/stable/mondo/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/src/common/libmondo-filelist.c
r1548 r1551 434 434 char *file_to_analyze = NULL; 435 435 char *strtmp = NULL; 436 char *tmp = NULL; 436 437 int i; 437 438 size_t n = 0; … … 458 459 mr_msg(8, "Analyzing %s", file_to_analyze); 459 460 /* BERLIOS : to be checked */ 460 mr_asprintf(&strtmp, syscall_sprintf, mr_stresc(file_to_analyze, "`$\\\"", BACKSLASH)); 461 tmp = mr_stresc(file_to_analyze, "`$\\\"", BACKSLASH)); 462 mr_asprintf(&strtmp, syscall_sprintf, tmp); 463 mr_free(tmp); 461 464 mr_asprintf(&sys_call, "%s 2>> /dev/null", strtmp); 462 465 mr_free(strtmp); … … 704 707 705 708 malloc_string(val_sz); 709 strcpy(val_sz,""); 706 710 mr_asprintf(&cfg_fname, "%s/mondo-restore.cfg", bkpinfo->tmpdir); 707 711 read_cfg_var(cfg_fname, "last-filelist-number", val_sz); -
branches/stable/mondo/src/lib/mr_str.c
r1241 r1551 72 72 // Found it, skip the rest. 73 73 cnt++; 74 inptr++;75 74 break; 76 75 } 77 inptr++;78 76 escptr++; 79 77 } 78 inptr++; 80 79 } 81 80 inptr = instr;
Note:
See TracChangeset
for help on using the changeset viewer.