diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-03-18 14:18:53 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-03-18 14:59:47 -0700 |
commit | 0e2b9cdde7def82bc7c2df5b0fae323825b222a3 (patch) | |
tree | 717f62f17370f68b3ebdfbceb22be52c64bc10a2 /nss/getent.c | |
parent | 69854bb5e9d734784b08a8ab1391ac8a8f5256c1 (diff) | |
download | glibc-0e2b9cdde7def82bc7c2df5b0fae323825b222a3.tar.gz glibc-0e2b9cdde7def82bc7c2df5b0fae323825b222a3.tar.xz glibc-0e2b9cdde7def82bc7c2df5b0fae323825b222a3.zip |
BZ#14812: Add missing translation marker on some argp option argument names in utilities.
Diffstat (limited to 'nss/getent.c')
-rw-r--r-- | nss/getent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nss/getent.c b/nss/getent.c index 0689859d24..aa4eaf9e0d 100644 --- a/nss/getent.c +++ b/nss/getent.c @@ -55,7 +55,7 @@ static const char args_doc[] = N_("database [key ...]"); /* Supported options. */ static const struct argp_option args_options[] = { - { "service", 's', "CONFIG", 0, N_("Service configuration to be used") }, + { "service", 's', N_("CONFIG"), 0, N_("Service configuration to be used") }, { "no-idn", 'i', NULL, 0, N_("disable IDN encoding") }, { NULL, 0, NULL, 0, NULL }, }; |