Changeset 1136 in MondoRescue for branches/stable/mondo/src/common
- Timestamp:
- Feb 11, 2007, 2:20:53 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/src/common/libmondo-archive.c
r1135 r1136 1692 1692 1693 1693 1694 1695 1696 1694 /** 1697 1695 * Create an ISO image in @c destfile, from files in @c bkpinfo->scratchdir. … … 1772 1770 mr_free(tmp3); 1773 1771 if (bkpinfo->backup_media_type == iso && bkpinfo->manual_cd_tray) { 1774 popup_and_OK( "Please insert new media and press Enter.");1772 popup_and_OK(_("Please insert new media and press Enter.")); 1775 1773 } 1776 1774 1777 1775 mr_msg(2, "make_iso_fs --- scratchdir=%s --- destfile=%s", 1778 1776 bkpinfo->scratchdir, destfile); 1777 /* BERLIOS: Do not ignore getcwd result */ 1779 1778 (void) getcwd(old_pwd, MAX_STR_LEN - 1); 1780 1779 sprintf(tmp, "chmod 744 %s", bkpinfo->scratchdir); … … 1836 1835 ("Failed to write to disk. I shall blank it and then try again."); 1837 1836 sleep(5); 1838 sy stem("sync");1837 sync(); 1839 1838 pause_for_N_seconds(5, "Letting DVD drive settle"); 1840 1839 1841 // dvd+rw-format --- OPTION 21840 // dvd+rw-format --- OPTION 2 1842 1841 if (!bkpinfo->please_dont_eject) { 1843 1842 log_to_screen("Ejecting media to clear drive status."); … … 2029 2028 2030 2029 2031 2032 2033 2034 2035 2036 2037 2038 2030 bool is_dev_an_NTFS_dev(char *bigfile_fname) 2039 2031 { … … 2041 2033 char *command; 2042 2034 malloc_string(tmp); 2035 2043 2036 malloc_string(command); 2044 2037 sprintf(command,
Note:
See TracChangeset
for help on using the changeset viewer.