mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
Fix an exceedingly *stupid* error in my floppy selection logic
which was hosing the fixit functionality. PR: 8983 Fixed and embarassed by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp> :-)
This commit is contained in:
parent
17640fbe70
commit
1fe19dd785
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=41558
@ -4,7 +4,7 @@
|
||||
* This is probably the last program in the `sysinstall' line - the next
|
||||
* generation being essentially a complete rewrite.
|
||||
*
|
||||
* $Id: install.c,v 1.218 1998/11/15 09:06:20 jkh Exp $
|
||||
* $Id: install.c,v 1.219 1998/11/24 00:18:55 jkh Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -366,6 +366,8 @@ installFixitFloppy(dialogMenuItem *self)
|
||||
"or unclean filesystem. Do you want to try again?"))
|
||||
return DITEM_FAILURE;
|
||||
}
|
||||
else
|
||||
break;
|
||||
}
|
||||
if (!directory_exists("/tmp"))
|
||||
(void)symlink("/mnt2/tmp", "/tmp");
|
||||
|
@ -4,7 +4,7 @@
|
||||
* This is probably the last program in the `sysinstall' line - the next
|
||||
* generation being essentially a complete rewrite.
|
||||
*
|
||||
* $Id: install.c,v 1.218 1998/11/15 09:06:20 jkh Exp $
|
||||
* $Id: install.c,v 1.219 1998/11/24 00:18:55 jkh Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -366,6 +366,8 @@ installFixitFloppy(dialogMenuItem *self)
|
||||
"or unclean filesystem. Do you want to try again?"))
|
||||
return DITEM_FAILURE;
|
||||
}
|
||||
else
|
||||
break;
|
||||
}
|
||||
if (!directory_exists("/tmp"))
|
||||
(void)symlink("/mnt2/tmp", "/tmp");
|
||||
|
@ -4,7 +4,7 @@
|
||||
* This is probably the last program in the `sysinstall' line - the next
|
||||
* generation being essentially a complete rewrite.
|
||||
*
|
||||
* $Id: install.c,v 1.218 1998/11/15 09:06:20 jkh Exp $
|
||||
* $Id: install.c,v 1.219 1998/11/24 00:18:55 jkh Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -366,6 +366,8 @@ installFixitFloppy(dialogMenuItem *self)
|
||||
"or unclean filesystem. Do you want to try again?"))
|
||||
return DITEM_FAILURE;
|
||||
}
|
||||
else
|
||||
break;
|
||||
}
|
||||
if (!directory_exists("/tmp"))
|
||||
(void)symlink("/mnt2/tmp", "/tmp");
|
||||
|
Loading…
Reference in New Issue
Block a user