This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: [patch] timezone/zdump.c: combine strings for easier localization


On Sun, Dec 24, 2000 at 03:48:18PM +0100, Andreas Jaeger wrote:
> On Sun, Dec 24, 2000 at 09:19:44AM -0500, Ben Collins wrote:
> 
> Ben, you forgot to attacht the patch.
> 

Sorry, was bound to happen sooner or later over the past two days :)

-- 
 -----------=======-=-======-=========-----------=====------------=-=------
/  Ben Collins  --  ...on that fantastic voyage...  --  Debian GNU/Linux   \
`  bcollins@debian.org  --  bcollins@openldap.org  --  bcollins@linux.com  '
 `---=========------=======-------------=-=-----=-===-======-------=--=---'
Index: timezone/zdump.c
===================================================================
RCS file: /cvs/glibc/libc/timezone/zdump.c,v
retrieving revision 1.4
diff -u -u -r1.4 zdump.c
--- zdump.c	2000/10/23 16:57:33	1.4
+++ zdump.c	2000/12/24 14:20:03
@@ -264,9 +264,9 @@
 		show(argv[i], t, TRUE);
 	}
 	if (fflush(stdout) || ferror(stdout)) {
-		(void) fprintf(stderr, _("%s: Error writing "),
+		(void) fprintf(stderr, _("%s: Error writing standard output: "),
 			argv[0]);
-		(void) perror(_("standard output"));
+		(void) perror(NULL);
 		(void) exit(EXIT_FAILURE);
 	}
 	exit(EXIT_SUCCESS);

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]