diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-12-20 18:35:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-12-20 18:35:45 +0000 |
commit | cc2f0a2bb9d693cc44182f33f979e2628c99d75e (patch) | |
tree | 576cc9052782d2fdf89f037317e098770590805d /resolv/res_hconf.c | |
parent | 545f1b1177b56028d80fd09c82e242259cc700dd (diff) | |
download | glibc-cc2f0a2bb9d693cc44182f33f979e2628c99d75e.tar.gz glibc-cc2f0a2bb9d693cc44182f33f979e2628c99d75e.tar.xz glibc-cc2f0a2bb9d693cc44182f33f979e2628c99d75e.zip |
* resolv/res_hconf.c (arg_service_list): Reduce size of svcs and
mark const. (cmd): Mark as const.
Diffstat (limited to 'resolv/res_hconf.c')
-rw-r--r-- | resolv/res_hconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resolv/res_hconf.c b/resolv/res_hconf.c index 756a0987df..c54b28dadd 100644 --- a/resolv/res_hconf.c +++ b/resolv/res_hconf.c @@ -114,10 +114,10 @@ arg_service_list (const char *fname, int line_num, const char *args, const char *start; size_t len; size_t i; - static struct + static const struct { - const char * name; - enum Name_Service service; + const char name[6]; + int16_t service; } svcs[] = { {"bind", SERVICE_BIND}, |