aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2018-02-04 18:36:24 +0000
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2018-02-04 18:36:24 +0000
commit076ec4025df3f67dc17f6784b744bae1acf4a074 (patch)
tree51a44d51256ab1e0e49d9e3627fdbe22ee3df5ec /libexec
parent003c70ff3cb2f49888b0f5cb601ab98fd6e457dc (diff)
Notes
Diffstat (limited to 'libexec')
-rw-r--r--libexec/getty/subr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libexec/getty/subr.c b/libexec/getty/subr.c
index 3d8a658c17b3..23b52734d056 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;