aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2002-05-12 03:47:23 +0000
committerBruce Evans <bde@FreeBSD.org>2002-05-12 03:47:23 +0000
commita8f9c5c7946ad79f90d90f98b66b10bac5c00ceb (patch)
tree94cfabbc5b9cebecff12395fa15ac1698da86031 /usr.bin
parent95ba43303b1bc5628f4976d79ca33bc5b2b52613 (diff)
downloadsrc-a8f9c5c7946ad79f90d90f98b66b10bac5c00ceb.tar.gz
src-a8f9c5c7946ad79f90d90f98b66b10bac5c00ceb.zip
Fixed printing the the strip binary's name in error messages.
Notes
Notes: svn path=/head/; revision=96437
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/xinstall/xinstall.c2
1 files changed, 1 insertions, 1 deletions
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);