diff options
| author | Kevin Lo <kevlo@FreeBSD.org> | 2012-02-14 10:11:45 +0000 |
|---|---|---|
| committer | Kevin Lo <kevlo@FreeBSD.org> | 2012-02-14 10:11:45 +0000 |
| commit | 01bd93ce1caac540b6a39f11c2ac0a8bc11e329b (patch) | |
| tree | 5972e53e7a2673fb62ad5ccf551f22f487ff5a98 /usr.bin/login | |
| parent | 6bbd04d0e4de3f8b7633985631eb381018beea3c (diff) | |
Notes
Diffstat (limited to 'usr.bin/login')
| -rw-r--r-- | usr.bin/login/login_fbtab.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/login/login_fbtab.c b/usr.bin/login/login_fbtab.c index ad64e4fad948e..f642ea7e7f5b7 100644 --- a/usr.bin/login/login_fbtab.c +++ b/usr.bin/login/login_fbtab.c @@ -100,17 +100,17 @@ login_fbtab(char *tty, uid_t uid, gid_t gid) if ((cp = devname = strtok(buf, WSPACE)) == 0) continue; /* empty or comment */ if (strncmp(devname, _PATH_DEV, sizeof _PATH_DEV - 1) != 0 - || (cp = strtok((char *) 0, WSPACE)) == 0 + || (cp = strtok(NULL, WSPACE)) == 0 || *cp != '0' || sscanf(cp, "%o", &prot) == 0 || prot == 0 || (prot & 0777) != prot - || (cp = strtok((char *) 0, WSPACE)) == 0) { + || (cp = strtok(NULL, WSPACE)) == 0) { syslog(LOG_ERR, "%s: bad entry: %s", table, cp ? cp : "(null)"); continue; } if (strcmp(devname + 5, tty) == 0) { - for (cp = strtok(cp, ":"); cp; cp = strtok((char *) 0, ":")) { + for (cp = strtok(cp, ":"); cp; cp = strtok(NULL, ":")) { login_protect(table, cp, prot, uid, gid); } } |
