Change TITLE to something more rational. Make sysinstall.c use it instead

of its own hardcoded constant.
This commit is contained in:
Jordan K. Hubbard 1994-11-08 11:44:04 +00:00
parent 4455595be1
commit 02006c7644
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4272
2 changed files with 2 additions and 2 deletions

View File

@ -793,7 +793,7 @@ main(int argc, char **argv)
bcopy("FreeBSD", utsname.sysname, strlen("FreeBSD"));
}
#else
bcopy("FreeBSD-2.0.ALPHA", utsname.sysname, strlen("FreeBSD-2.0.ALPHA"));
bcopy(TITLE, utsname.sysname, strlen(TITLE));
#endif
/* XXX - libdialog has particularly bad return value checking */

View File

@ -12,7 +12,7 @@
* its use.
*/
#define TITLE "FreeBSD 2.0.1-Development Installation"
#define TITLE "FreeBSD 2.0-ALPHA Installation"
#define BOOT1 "/stand/sdboot"
#define BOOT2 "/stand/bootsd"