From 076ec4025df3f67dc17f6784b744bae1acf4a074 Mon Sep 17 00:00:00 2001 From: Edward Tomasz Napierala Date: Sun, 4 Feb 2018 18:36:24 +0000 Subject: [PATCH] Don't cast away the const, it's not been needed since r92925. MFC after: 2 weeks Sponsored by: The FreeBSD Foundation --- libexec/getty/subr.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libexec/getty/subr.c b/libexec/getty/subr.c index 3d8a658c17b..23b52734d05 100644 --- a/libexec/getty/subr.c +++ b/libexec/getty/subr.c @@ -101,7 +101,7 @@ gettable(const char *name, char *buf) firsttime = 0; } - switch (cgetent(&buf, (char **)dba, (char *)name)) { + switch (cgetent(&buf, (char **)dba, name)) { case 1: msg = "%s: couldn't resolve 'tc=' in gettytab '%s'"; case 0: @@ -126,7 +126,7 @@ gettable(const char *name, char *buf) } for (sp = gettystrs; sp->field; sp++) { - if ((l = cgetstr(buf, (char*)sp->field, &p)) >= 0) { + if ((l = cgetstr(buf, sp->field, &p)) >= 0) { if (sp->value) { /* prefer existing value */ if (strcmp(p, sp->value) != 0) @@ -144,7 +144,7 @@ gettable(const char *name, char *buf) } for (np = gettynums; np->field; np++) { - if (cgetnum(buf, (char*)np->field, &n) == -1) + if (cgetnum(buf, np->field, &n) == -1) np->set = 0; else { np->set = 1; @@ -153,7 +153,7 @@ gettable(const char *name, char *buf) } for (fp = gettyflags; fp->field; fp++) { - if (cgetcap(buf, (char *)fp->field, ':') == NULL) + if (cgetcap(buf, fp->field, ':') == NULL) fp->set = 0; else { fp->set = 1;