aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uudecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/uudecode.c')
-rw-r--r--coreutils/uudecode.c4
1 files changed, 2 insertions, 2 deletions
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,
286 && (freopen (outname, "w", stdout) == NULL 286 && (freopen (outname, "w", stdout) == NULL
287 || chmod (outname, mode & (S_IRWXU | S_IRWXG | S_IRWXO)) 287 || chmod (outname, mode & (S_IRWXU | S_IRWXG | S_IRWXO))
288 )) { 288 )) {
289 errorMsg("uudeoce %s: %s %s\n", outname, inname, strerror(errno)); /* */ 289 errorMsg("%s: %s %s\n", outname, inname, strerror(errno)); /* */
290 return FALSE; 290 return FALSE;
291 } 291 }
292 292
@@ -340,7 +340,7 @@ int uudecode_main (int argc,
340 if (decode (argv[optind], outname) != 0) 340 if (decode (argv[optind], outname) != 0)
341 exit_status = FALSE; 341 exit_status = FALSE;
342 } else { 342 } else {
343 errorMsg("uudecode: %s: %s\n", argv[optind], strerror(errno)); 343 errorMsg("%s: %s\n", argv[optind], strerror(errno));
344 exit_status = FALSE; 344 exit_status = FALSE;
345 } 345 }
346 optind++; 346 optind++;