summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/cdrom.c
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2000-12-22 14:41:43 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2000-12-22 14:41:43 +0000
commitb1bca3aa6d401b53c65b7dfec75ace4aa543674d (patch)
tree76644182e463a0559a5300538b2da8c97d747dc1 /mdk-stage1/cdrom.c
parent85e803d061b840c3fd1434baef9e247f34e9123c (diff)
downloaddrakx-backup-do-not-use-b1bca3aa6d401b53c65b7dfec75ace4aa543674d.tar
drakx-backup-do-not-use-b1bca3aa6d401b53c65b7dfec75ace4aa543674d.tar.gz
drakx-backup-do-not-use-b1bca3aa6d401b53c65b7dfec75ace4aa543674d.tar.bz2
drakx-backup-do-not-use-b1bca3aa6d401b53c65b7dfec75ace4aa543674d.tar.xz
drakx-backup-do-not-use-b1bca3aa6d401b53c65b7dfec75ace4aa543674d.zip
use a #define for Linux-Mandrake following fclara's require
Diffstat (limited to 'mdk-stage1/cdrom.c')
-rw-r--r--mdk-stage1/cdrom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdk-stage1/cdrom.c b/mdk-stage1/cdrom.c
index 2188ddcc7..99fd4b7d1 100644
--- a/mdk-stage1/cdrom.c
+++ b/mdk-stage1/cdrom.c
@@ -54,13 +54,13 @@ static enum return_type try_with_device(char *dev_name)
if (access("/tmp/image/Mandrake/mdkinst", R_OK)) {
enum return_type results;
umount("/tmp/image");
- results = ask_yes_no("That CDROM disc does not seem to be a Linux-Mandrake Installation CDROM.\nRetry with another disc?");
+ results = ask_yes_no("That CDROM disc does not seem to be a " DISTRIB_NAME " Installation CDROM.\nRetry with another disc?");
if (results == RETURN_OK)
return try_with_device(dev_name);
return results;
}
- log_message("found a Linux-Mandrake CDROM, good news!");
+ log_message("found a " DISTRIB_NAME " CDROM, good news!");
if (IS_SPECIAL_STAGE2 || ramdisk_possible())
load_ramdisk(); /* we don't care about return code, we'll do it live if we failed */