Removed bitrot.

This commit is contained in:
Ruslan Ermilov 2005-01-13 13:34:00 +00:00
parent e39db32ab0
commit 17100a2a55
2 changed files with 4 additions and 10 deletions

View File

@ -817,7 +817,6 @@ int
installFixupBase(dialogMenuItem *self)
{
FILE *fp;
int kstat = 1;
#ifdef __ia64__
const char *efi_mntpt;
#endif
@ -826,12 +825,10 @@ installFixupBase(dialogMenuItem *self)
if (RunningAsInit) {
#if defined(__i386__) || defined(__amd64__)
if ((fp = fopen("/boot/loader.conf", "a")) != NULL) {
if (!kstat || !OnVTY)
if (!OnVTY) {
fprintf(fp, "# -- sysinstall generated deltas -- #\n");
if (!kstat)
fprintf(fp, "userconfig_script_load=\"YES\"\n");
if (!OnVTY)
fprintf(fp, "console=\"comconsole\"\n");
}
fclose(fp);
}
#endif

View File

@ -817,7 +817,6 @@ int
installFixupBase(dialogMenuItem *self)
{
FILE *fp;
int kstat = 1;
#ifdef __ia64__
const char *efi_mntpt;
#endif
@ -826,12 +825,10 @@ installFixupBase(dialogMenuItem *self)
if (RunningAsInit) {
#if defined(__i386__) || defined(__amd64__)
if ((fp = fopen("/boot/loader.conf", "a")) != NULL) {
if (!kstat || !OnVTY)
if (!OnVTY) {
fprintf(fp, "# -- sysinstall generated deltas -- #\n");
if (!kstat)
fprintf(fp, "userconfig_script_load=\"YES\"\n");
if (!OnVTY)
fprintf(fp, "console=\"comconsole\"\n");
}
fclose(fp);
}
#endif