-/* $OpenBSD: xinstall.c,v 1.8 1996/09/22 20:17:54 imp Exp $ */
+/* $OpenBSD: xinstall.c,v 1.9 1996/12/06 02:14:56 deraadt Exp $ */
/* $NetBSD: xinstall.c,v 1.9 1995/12/20 10:25:17 jonathan Exp $ */
/*
#if 0
static char sccsid[] = "@(#)xinstall.c 8.1 (Berkeley) 7/21/93";
#endif
-static char rcsid[] = "$OpenBSD: xinstall.c,v 1.8 1996/09/22 20:17:54 imp Exp $";
+static char rcsid[] = "$OpenBSD: xinstall.c,v 1.9 1996/12/06 02:14:56 deraadt Exp $";
#endif /* not lint */
#include <sys/param.h>
errx(EX_TEMPFAIL, "forks: %s", strerror(serrno));
case 0:
execl(_PATH_STRIP, "strip", to_name, NULL);
- err(EX_OSERR, "%s", _PATH_STRIP);
+ warn("%s", _PATH_STRIP);
+ _exit(EX_OSERR);
default:
if (wait(&status) == -1 || status)
(void)unlink(to_name);