From a8f9c5c7946ad79f90d90f98b66b10bac5c00ceb Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sun, 12 May 2002 03:47:23 +0000 Subject: Fixed printing the the strip binary's name in error messages. --- usr.bin/xinstall/xinstall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin') diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c index 75f4549e983f..16c039bf2ee3 100644 --- a/usr.bin/xinstall/xinstall.c +++ b/usr.bin/xinstall/xinstall.c @@ -715,7 +715,7 @@ strip(to_name) if (stripbin == NULL) stripbin = "strip"; execlp(stripbin, stripbin, to_name, (char *)NULL); - err(EX_OSERR, "exec(strip)"); + err(EX_OSERR, "exec(%s)", stripbin); default: if (wait(&status) == -1 || status) { (void)unlink(to_name); -- cgit v1.2.3