From be84cd4ef66f8956eb4c7ff0542fd1ba823a70e7 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Wed, 12 Jul 2000 17:02:35 +0000 Subject: Always report the applet name when doing error reporting. --- coreutils/uudecode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coreutils/uudecode.c') diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c index ac33762b0..12a71a573 100644 --- a/coreutils/uudecode.c +++ b/coreutils/uudecode.c @@ -286,7 +286,7 @@ static int decode (const char *inname, && (freopen (outname, "w", stdout) == NULL || chmod (outname, mode & (S_IRWXU | S_IRWXG | S_IRWXO)) )) { - errorMsg("uudeoce %s: %s %s\n", outname, inname, strerror(errno)); /* */ + errorMsg("%s: %s %s\n", outname, inname, strerror(errno)); /* */ return FALSE; } @@ -340,7 +340,7 @@ int uudecode_main (int argc, if (decode (argv[optind], outname) != 0) exit_status = FALSE; } else { - errorMsg("uudecode: %s: %s\n", argv[optind], strerror(errno)); + errorMsg("%s: %s\n", argv[optind], strerror(errno)); exit_status = FALSE; } optind++; -- cgit v1.2.3