summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/network.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/network.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/network.c')
-rw-r--r--mdk-stage1/network.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mdk-stage1/network.c b/mdk-stage1/network.c
index 12df7f136..2e0870a43 100644
--- a/mdk-stage1/network.c
+++ b/mdk-stage1/network.c
@@ -513,7 +513,7 @@ static enum return_type intf_select_and_up(void)
enum return_type nfs_prepare(void)
{
- char * questions[] = { "NFS server name", "Linux-Mandrake directory", NULL };
+ char * questions[] = { "NFS server name", DISTRIB_NAME " directory", NULL };
char * questions_auto[] = { "server", "directory", NULL };
char ** answers;
char * nfsmount_location;
@@ -524,7 +524,7 @@ enum return_type nfs_prepare(void)
do {
results = ask_from_entries_auto("Please enter the name or IP address of your NFS server, "
- "and the directory containing the Linux-Mandrake installation.",
+ "and the directory containing the " DISTRIB_NAME " installation.",
questions, &answers, 40, questions_auto);
if (results != RETURN_OK)
return nfs_prepare();
@@ -541,14 +541,14 @@ enum return_type nfs_prepare(void)
}
if (access("/tmp/image/Mandrake/mdkinst", R_OK)) {
- error_message("That NFS volume does not seem to contain the Linux-Mandrake Installation.");
+ error_message("That NFS volume does not seem to contain the " DISTRIB_NAME " Installation.");
umount("/tmp/image");
results = RETURN_BACK;
}
}
while (results == RETURN_BACK);
- log_message("found the Linux-Mandrake Installation, good news!");
+ log_message("found the " DISTRIB_NAME " Installation, good news!");
if (IS_SPECIAL_STAGE2) {
if (load_ramdisk() != RETURN_OK) {