Changeset 685 in MondoRescue for branches/stable/mondo


Ignore:
Timestamp:
Jul 6, 2006, 1:14:08 PM (18 years ago)
Author:
andree
Message:

Only ask "Is your computer a laptop, or does the CD writer incorporate
BurnProof technology?" if the device to archive to is NOT a DVD writer
because it is not needed in this case but rather gives an error because
growisofs does not support the '-m' switch. See also check and comment
in libmondo-tools.c saying " -m isn't supported by growisofs, BTW...".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/mondo/common/libmondo-devices.c

    r681 r685  
    18791879    case dvd:
    18801880        if (archiving_to_media) {
    1881             if (ask_me_yes_or_no
    1882                 ("Is your computer a laptop, or does the CD writer incorporate BurnProof technology?"))
    1883             {
    1884                 bkpinfo->manual_cd_tray = TRUE;
     1881            if (bkpinfo->backup_media_type != dvd) {
     1882                if (ask_me_yes_or_no
     1883                    ("Is your computer a laptop, or does the CD writer incorporate BurnProof technology?"))
     1884                {
     1885                    bkpinfo->manual_cd_tray = TRUE;
     1886                }
    18851887            }
    18861888            if ((bkpinfo->compression_level =
Note: See TracChangeset for help on using the changeset viewer.