Don't cast away the const, it's not been needed since r92925.

MFC after:	2 weeks
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Edward Tomasz Napierala 2018-02-04 18:36:24 +00:00
parent 003c70ff3c
commit 076ec4025d

View File

@ -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;