diff options
author | Roland McGrath <roland@gnu.org> | 1995-11-26 17:37:11 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-11-26 17:37:11 +0000 |
commit | cbd3dceb398526fda2fc62674dc873c5c8f5b38d (patch) | |
tree | 6fb3253482b342f11beeddd7a880c2898ad1cddc /posix/getconf.c | |
parent | fbaad1494f7fa9e52c391a926d1c3a015604eb58 (diff) | |
download | glibc-cbd3dceb398526fda2fc62674dc873c5c8f5b38d.tar glibc-cbd3dceb398526fda2fc62674dc873c5c8f5b38d.tar.gz glibc-cbd3dceb398526fda2fc62674dc873c5c8f5b38d.tar.bz2 glibc-cbd3dceb398526fda2fc62674dc873c5c8f5b38d.zip |
Sat Nov 25 02:48:47 1995 Ulrich Drepper <drepper@gnu.ai.mit.edu>
* assert/assert-perr.c, assert/assert.c, inet/rcmd.c,
malloc/mcheck.c, malloc/vm-limit.c, posix/getconf.c, posix/id.c,
resolv/herror.c, sunrpc/auth_unix.c, sunrpc/clnt_perr.c,
sunrpc/clnt_raw.c, sunrpc/get_myaddr.c, sunrpc/pmap_clnt.c,
sunrpc/pmap_rmt.c, sunrpc/portmap.c, sunrpc/rpc_main.c,
sunrpc/rpc_parse.c, sunrpc/rpc_scan.c, sunrpc/rpc_util.c,
sunrpc/rpcinfo.c, sunrpc/svc_simple.c, sunrpc/svc_tcp.c,
sunrpc/svc_udp.c, time/zdump.c, time/zic.c: Mark translatable
strings.
Sat Nov 25 02:48:47 1995 Ulrich Drepper <drepper@gnu.ai.mit.edu>
* assert/assert-perr.c, assert/assert.c, inet/rcmd.c,
malloc/mcheck.c, malloc/vm-limit.c, posix/getconf.c, posix/id.c,
resolv/herror.c, sunrpc/auth_unix.c, sunrpc/clnt_perr.c,
sunrpc/clnt_raw.c, sunrpc/get_myaddr.c, sunrpc/pmap_clnt.c,
sunrpc/pmap_rmt.c, sunrpc/portmap.c, sunrpc/rpc_main.c,
sunrpc/rpc_parse.c, sunrpc/rpc_scan.c, sunrpc/rpc_util.c,
sunrpc/rpcinfo.c, sunrpc/svc_simple.c, sunrpc/svc_tcp.c,
sunrpc/svc_udp.c, time/zdump.c, time/zic.c: Mark translatable
strings.
Diffstat (limited to 'posix/getconf.c')
-rw-r--r-- | posix/getconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/posix/getconf.c b/posix/getconf.c index e42b909ed9..7423a77225 100644 --- a/posix/getconf.c +++ b/posix/getconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -61,7 +61,7 @@ static CONST char *program; static void DEFUN_VOID(usage) { - fprintf (stderr, "Usage: %s variable_name [pathname]\n", program); + fprintf (stderr, _("Usage: %s variable_name [pathname]\n"), program); exit (2); } @@ -129,6 +129,6 @@ DEFUN(main, (argc, argv), int argc AND char **argv) } } - fprintf (stderr, "%s: Unrecognized variable `%s'\n", program, argv[1]); + fprintf (stderr, _("%s: Unrecognized variable `%s'\n"), program, argv[1]); exit (2); } |