diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-10-04 23:31:11 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-10-04 23:31:11 +0000 |
commit | 9ecb7b363d61a7bfc5f90df69fc231d6dd6ee87f (patch) | |
tree | 867e5f465ccb8aa72d2b10d0a87a48fbc78dd5e5 /argp/argp-parse.c | |
parent | d64e603ae7cd3bbede9acf62d402c9d9492d2faa (diff) | |
download | glibc-9ecb7b363d61a7bfc5f90df69fc231d6dd6ee87f.tar glibc-9ecb7b363d61a7bfc5f90df69fc231d6dd6ee87f.tar.gz glibc-9ecb7b363d61a7bfc5f90df69fc231d6dd6ee87f.tar.bz2 glibc-9ecb7b363d61a7bfc5f90df69fc231d6dd6ee87f.zip |
Update.
2000-10-04 Ulrich Drepper <drepper@redhat.com>
* argp/argp-parse.c (argp_default_argp): Set libc as message domain.
(argp_version_argp): Likewise.
Diffstat (limited to 'argp/argp-parse.c')
-rw-r--r-- | argp/argp-parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/argp/argp-parse.c b/argp/argp-parse.c index e54497cf5e..71b3fb298b 100644 --- a/argp/argp-parse.c +++ b/argp/argp-parse.c @@ -142,7 +142,7 @@ argp_default_parser (int key, char *arg, struct argp_state *state) } static const struct argp argp_default_argp = - {argp_default_options, &argp_default_parser}; + {argp_default_options, &argp_default_parser, NULL, NULL, NULL, NULL, "libc"}; static const struct argp_option argp_version_options[] = @@ -174,7 +174,7 @@ argp_version_parser (int key, char *arg, struct argp_state *state) } static const struct argp argp_version_argp = - {argp_version_options, &argp_version_parser}; + {argp_version_options, &argp_version_parser, NULL, NULL, NULL, NULL, "libc"}; /* Returns the offset into the getopt long options array LONG_OPTIONS of a long option with called NAME, or -1 if none is found. Passing NULL as |