From b529ac16d7308cb6e852b286b42ebe971a32cd3f Mon Sep 17 00:00:00 2001 From: markw Date: Thu, 7 Dec 2000 19:56:48 +0000 Subject: Changed names of functions in utility.c and all affected files, to make compliant with the style guide. Everybody rebuild your tags file! git-svn-id: svn://busybox.net/trunk/busybox@1398 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- coreutils/uuencode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'coreutils/uuencode.c') diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c index 8d15adbf6..41e659075 100644 --- a/coreutils/uuencode.c +++ b/coreutils/uuencode.c @@ -142,7 +142,7 @@ static void encode() } if (ferror (stdin)) - errorMsg("Read error\n"); + error_msg("Read error\n"); if (trans_ptr == uu_std) { putchar (ENC ('\0')); @@ -178,7 +178,7 @@ int uuencode_main (int argc, case 2: /* Optional first argument is input file. */ if (!freopen (argv[optind], "r", stdin) || fstat (fileno (stdin), &sb)) { - errorMsg("%s: %s\n", argv[optind], strerror(errno)); + error_msg("%s: %s\n", argv[optind], strerror(errno)); return EXIT_FAILURE; } mode = sb.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO); @@ -199,7 +199,7 @@ int uuencode_main (int argc, encode(); printf(trans_ptr == uu_std ? "end\n" : "====\n"); if (ferror (stdout)) { - errorMsg("Write error\n"); + error_msg("Write error\n"); return EXIT_FAILURE; } return EXIT_SUCCESS; -- cgit v1.2.3-55-g6feb