* resolv/res_hconf.c (arg_service_list): Reduce size of svcs and

mark const.
	(cmd): Mark as const.
This commit is contained in:
Ulrich Drepper 2005-12-20 18:35:45 +00:00
parent 545f1b1177
commit cc2f0a2bb9
2 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,8 @@
2005-12-20 Ulrich Drepper <drepper@redhat.com>
* resolv/res_hconf.c (cmd): Mark as const.
* resolv/res_hconf.c (arg_service_list): Reduce size of svcs and
mark const.
(cmd): Mark as const.
(parse_line): Mark c as pointer to const.
* misc/getusershell.c (initshells): Remove unnecessary tests.

View File

@ -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},