Changeset 812 in MondoRescue
- Timestamp:
- Sep 23, 2006, 9:19:17 AM (18 years ago)
- Location:
- branches/stable/mondo/mondo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/mondo/common/libmondo-archive.c
r693 r812 2222 2222 delete_when_done = TRUE; 2223 2223 } else { 2224 // Call ntfsclone (formerly partimagehack) if it's a /dev entry (i.e. a partition to be imaged) 2224 // Call ntfsclone (formerly partimagehack) if it's a /dev entry 2225 // (i.e. a partition to be imaged) 2225 2226 log_msg(2, "bigfile_fname = %s", bigfile_fname); 2226 2227 use_ntfsprog = FALSE; … … 2231 2232 "Calling ntfsclone in background because %s is an NTFS partition", 2232 2233 bigfile_fname); 2233 sprintf(sz_devfile, "/tmp/%d.%d.000", 2234 sprintf(sz_devfile, "%s/%d.%d.000", 2235 bkpinfo->tmpdir, 2234 2236 (int) (random() % 32768), 2235 2237 (int) (random() % 32768)); -
branches/stable/mondo/mondo/mondorestore/mondo-restore.c
r804 r812 1774 1774 "Calling ntfsclone in background because %s is a /dev entry", 1775 1775 outfile_fname); 1776 sprintf(sz_devfile, "/tmp/%d.%d.000", (int) (random() % 32768), 1776 sprintf(sz_devfile, "%s/%d.%d.000", 1777 bkpinfo->tmpdir, 1778 (int) (random() % 32768), 1777 1779 (int) (random() % 32768)); 1778 1780 mkfifo(sz_devfile, 0x770);
Note:
See TracChangeset
for help on using the changeset viewer.