1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-17 15:27:36 +00:00

Add some missing parameters to msgConfirm() which produced the effects

noted in PR#2454
This commit is contained in:
Jordan K. Hubbard 1997-01-15 11:48:37 +00:00
parent 2273e4bf58
commit 840c833532
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=21720
2 changed files with 4 additions and 4 deletions

View File

@ -159,7 +159,7 @@ traverseHitlist(HitList *h)
if (!file_readable(h->name)) {
if (!h->optional)
msgConfirm("Unable to find an old /etc/%s file! That is decidedly non-standard and\n"
"your upgraded system may function a little strangely as a result.");
"your upgraded system may function a little strangely as a result.", h->name);
}
else {
if (h->action == JUST_COPY) {
@ -363,7 +363,7 @@ installUpgrade(dialogMenuItem *self)
msgConfirm("Unable to go to your saved /etc directory in %s?! Argh!\n"
"Something went seriously wrong! It's quite possible that\n"
"your former /etc is toast. I hope you didn't have any\n"
"important customizations you wanted to keep in there.. :(");
"important customizations you wanted to keep in there.. :(", saved_etc);
}
else {
/* Now try to resurrect the /etc files */

View File

@ -159,7 +159,7 @@ traverseHitlist(HitList *h)
if (!file_readable(h->name)) {
if (!h->optional)
msgConfirm("Unable to find an old /etc/%s file! That is decidedly non-standard and\n"
"your upgraded system may function a little strangely as a result.");
"your upgraded system may function a little strangely as a result.", h->name);
}
else {
if (h->action == JUST_COPY) {
@ -363,7 +363,7 @@ installUpgrade(dialogMenuItem *self)
msgConfirm("Unable to go to your saved /etc directory in %s?! Argh!\n"
"Something went seriously wrong! It's quite possible that\n"
"your former /etc is toast. I hope you didn't have any\n"
"important customizations you wanted to keep in there.. :(");
"important customizations you wanted to keep in there.. :(", saved_etc);
}
else {
/* Now try to resurrect the /etc files */