Ignore:
Timestamp:
Mar 8, 2024, 3:19:14 AM (2 months ago)
Author:
Bruno Cornec
Message:

find_dvd|cdrom_device merged into a rewritten find_optical_device - adds find_usb_device and find_device - mount_CDROM_here moved to mount_media (ongoing)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/mondo/src/mondoarchive/mondoarchive.c

    r3874 r3875  
    281281        g_loglevel = 10;
    282282        setup_newt_stuff();
    283         if ((tmp = find_cdrom_device()) == NULL) {
    284             printf("Failed to find CDR-RW drive\n");
    285         } else {
    286             printf("CD-RW is at %s\n", tmp);
     283        if ((tmp = find_optical_device()) == NULL) {
     284            printf("Failed to find optical drive\n");
     285        } else {
     286            printf("Optical drive is at %s\n", tmp);
    287287        }
    288288        mr_free(tmp);
     
    293293        g_loglevel = 10;
    294294        setup_newt_stuff();
    295         if (tmp = find_dvd_device()) {
     295        if (tmp = find_optical_device()) {
    296296            printf("Failed to find DVD drive\n");
    297297        } else {
Note: See TracChangeset for help on using the changeset viewer.