* resolv/res_hconf.c (cmd): Mark as const.

(parse_line): Mark c as pointer to const.
This commit is contained in:
Ulrich Drepper 2005-12-20 18:25:49 +00:00
parent 970362dc56
commit 545f1b1177
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2005-12-20 Ulrich Drepper <drepper@redhat.com>
* resolv/res_hconf.c (cmd): Mark as const.
(parse_line): Mark c as pointer to const.
* misc/getusershell.c (initshells): Remove unnecessary tests.
(endusershell): Likewise.
(okshells): Mark as const.

View file

@ -67,7 +67,7 @@ static const char *arg_trimdomain_list (const char *, int, const char *,
static const char *arg_spoof (const char *, int, const char *, unsigned int);
static const char *arg_bool (const char *, int, const char *, unsigned int);
static struct cmd
static const struct cmd
{
const char *name;
const char *(*parse_args) (const char * filename, int line_num,
@ -315,7 +315,7 @@ static void
parse_line (const char *fname, int line_num, const char *str)
{
const char *start;
struct cmd *c = 0;
const struct cmd *c = 0;
size_t len;
size_t i;