diff options
author | Miles Bader <miles@gnu.org> | 1997-06-20 05:43:33 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-06-20 05:43:33 +0000 |
commit | 44c8790bea3af9aa427c4aa7dd59b1543ca0db6d (patch) | |
tree | 22325dd8d4134e6699d962ec92b8dabcf81b2cb8 | |
parent | 1dd0ed736fae382ab6c7174693b177a6bba5ef8d (diff) |
(netfs_startup):
Supply program name with error messages.
-rw-r--r-- | libnetfs/init-startup.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/libnetfs/init-startup.c b/libnetfs/init-startup.c index 669aa66e..c457441b 100644 --- a/libnetfs/init-startup.c +++ b/libnetfs/init-startup.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1996 Free Software Foundation, Inc. + Copyright (C) 1996, 1997 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -18,9 +18,10 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */ -#include "netfs.h" #include <stdio.h> +#include <error.h> #include <hurd/fsys.h> +#include "netfs.h" mach_port_t netfs_startup (mach_port_t bootstrap, int flags) @@ -29,10 +30,7 @@ netfs_startup (mach_port_t bootstrap, int flags) struct port_info *newpi; if (bootstrap == MACH_PORT_NULL) - { - fprintf (stderr, "Must be started as a translator...\n"); - exit (1); - } + error (10, 0, "Must be started as a translator"); errno = ports_create_port (netfs_control_class, netfs_port_bucket, sizeof (struct port_info), &newpi); @@ -43,10 +41,9 @@ netfs_startup (mach_port_t bootstrap, int flags) ports_port_deref (newpi); } if (errno) - { - perror ("Translator startup failure: fsys_startup"); - exit (1); - } + error (11, errno, "Translator startup failure: fsys_startup"); + mach_port_deallocate (mach_task_self (), bootstrap); + return realnode; } |