If no device is specified, check the CDROM environment variable before

picking the default device.
This commit is contained in:
Dag-Erling Smørgrav 2000-12-18 14:35:54 +00:00
parent 5078fb0b2a
commit 9dd4b5a781

View file

@ -197,6 +197,10 @@ int main (int argc, char **argv)
if (argc > 0 && ! strcasecmp (*argv, "help"))
usage ();
if (! cdname) {
cdname = getenv("CDROM");
}
if (! cdname) {
cdname = DEFAULT_CD_DRIVE;
warnx("no CD device name specified, defaulting to %s", cdname);