Fixed printing the the strip binary's name in error messages.

This commit is contained in:
bde 2002-05-12 03:47:23 +00:00
parent 73258fd6a3
commit 20313e69cb

View File

@ -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);