diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-09-05 16:59:37 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-09-05 16:59:37 +0000 |
commit | 5145728f45d1a83ebe229ee38c4f2534a43c385f (patch) | |
tree | 48dfa16e2e256f1627e60d1f1d19dfcc9e6e46d2 /init | |
parent | 41476b24b860bc333ed99c3eb2b575193b111aa7 (diff) |
*** empty log message ***
Diffstat (limited to 'init')
-rw-r--r-- | init/ChangeLog | 7 | ||||
-rw-r--r-- | init/init.c | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/init/ChangeLog b/init/ChangeLog index f24a4d9e..7e3b7617 100644 --- a/init/ChangeLog +++ b/init/ChangeLog @@ -1,3 +1,10 @@ +Thu Sep 5 11:12:32 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * init.c: Include <version.h>. + (init_version): Delete variable. + (launch_core_servers): Pass empty string as release; HURD_VERSION + as version. + Tue Aug 13 17:51:38 1996 Miles Bader <miles@gnu.ai.mit.edu> * Makefile (init): Remove -lutil. diff --git a/init/init.c b/init/init.c index 40d96a6f..406e79da 100644 --- a/init/init.c +++ b/init/init.c @@ -49,6 +49,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <argz.h> #include <utmp.h> #include <maptime.h> +#include <version.h> #include "startup_notify_U.h" #include "startup_reply_U.h" @@ -155,8 +156,6 @@ int fakeboot; /* The tasks of auth and proc and the bootstrap filesystem. */ task_t authtask, proctask, fstask; -char *init_version = "0.0"; - mach_port_t default_ports[INIT_PORT_MAX]; mach_port_t default_dtable[3]; int default_ints[INIT_INT_MAX]; @@ -879,8 +878,7 @@ launch_core_servers (void) default_ports[INIT_PORT_AUTH] = authserver; - proc_register_version (procserver, host_priv, "init", HURD_RELEASE, - init_version); + proc_register_version (procserver, host_priv, "init", "", HURD_VERSION); /* Get the bootstrap filesystem's proc server port. We must do this before calling proc_setmsgport below. */ |