Changeset 1670 in MondoRescue for branches/stable/mondo/src/common
- Timestamp:
- Oct 1, 2007, 12:50:28 PM (18 years ago)
- Location:
- branches/stable/mondo/src/common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/src/common/libmondo-filelist.c
r1663 r1670 1319 1319 time_t this_time; 1320 1320 1321 malloc_string(sth_B);1321 sth_B = malloc(8*MAX_STR_LEN); 1322 1322 malloc_string(ith_B); 1323 1323 malloc_string(new_with_spaces); -
branches/stable/mondo/src/common/libmondo-tools.c
r1669 r1670 488 488 if (bkpinfo->call_before_iso[0] == '\0') { 489 489 sprintf(bkpinfo->call_before_iso, 490 "%s %s -o %s/ temporary.iso. 2>> %s",490 "%s %s -o %s/"MONDO_TMPISOS" . 2>> %s", 491 491 mr_conf->iso_creation_cmd,mondo_mkisofs_sz, bkpinfo->tmpdir, MONDO_LOGFILE); 492 492 } else { 493 493 mr_asprintf(&call_before_iso_user, bkpinfo->call_before_iso); 494 494 sprintf (bkpinfo->call_before_iso, 495 "(%s %s -o %s/ temporary.iso. 2>> %s ; %s )",495 "(%s %s -o %s/"MONDO_TMPISOS" . 2>> %s ; %s )", 496 496 mr_conf->iso_creation_cmd,mondo_mkisofs_sz, bkpinfo->tmpdir, MONDO_LOGFILE, call_before_iso_user); 497 497 mr_free(call_before_iso_user); … … 499 499 log_it("bkpinfo->call_before_iso = %s", bkpinfo->call_before_iso); 500 500 sprintf(bkpinfo->call_make_iso, 501 "%s %s %s dev=%s speed=%d %s/ temporary.iso",501 "%s %s %s dev=%s speed=%d %s/"MONDO_TMPISOS, 502 502 mr_conf->iso_burning_cmd, 503 503 extra_cdrom_params, -
branches/stable/mondo/src/common/newt-specific.c
r1663 r1670 35 35 36 36 extern char *MONDO_LOGFILE; 37 38 extern struct s_bkpinfo *bkpinfo; 37 39 38 40 /*@unused@*/
Note:
See TracChangeset
for help on using the changeset viewer.