diff options
author | craigm <none@none> | 2007-01-23 10:25:17 -0800 |
---|---|---|
committer | craigm <none@none> | 2007-01-23 10:25:17 -0800 |
commit | e1d65dbde5eb5874bb4134e5bc20a7b3efe93a41 (patch) | |
tree | 133cb2627aa4361de4a8231ffd3622dd9f31d5f8 /usr/src/lib | |
parent | 0d69385cb7ad4279382815d1771fb178793e16dc (diff) | |
download | illumos-joyent-e1d65dbde5eb5874bb4134e5bc20a7b3efe93a41.tar.gz |
6512868 message from 1085341 fix does not need to be I18N
Diffstat (limited to 'usr/src/lib')
-rw-r--r-- | usr/src/lib/libc/port/stdio/flush.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr/src/lib/libc/port/stdio/flush.c b/usr/src/lib/libc/port/stdio/flush.c index 6da705cd04..225aef7277 100644 --- a/usr/src/lib/libc/port/stdio/flush.c +++ b/usr/src/lib/libc/port/stdio/flush.c @@ -20,7 +20,7 @@ */ /* - * Copyright 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -33,7 +33,6 @@ #include "synonyms.h" #include "mtlib.h" #include "file64.h" -#include "../gen/_libc_gettext.h" #define _iob __iob @@ -833,9 +832,9 @@ _file_get(FILE *iop) */ if (!iop->__xf_nocheck && bad_fd > -1 && iop->_magic != bad_fd) { /* LINTED: variable format specifier */ - (void) fprintf(stderr, _libc_gettext( + (void) fprintf(stderr, "Application violated extended FILE safety mechanism.\n" - "Please read the man page for extendedFILE.\nAborting\n")); + "Please read the man page for extendedFILE.\nAborting\n"); abort(); } return (altfd); |