mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Remove a bogus cast.
This commit is contained in:
parent
c53d09b102
commit
40e0f7deed
1 changed files with 1 additions and 1 deletions
|
|
@ -373,7 +373,7 @@ login_getcaplist(login_cap_t *lc, const char *cap, const char *chars)
|
|||
|
||||
if (chars == NULL)
|
||||
chars = ", \t";
|
||||
if ((lstring = login_getcapstr(lc, (char*)cap, NULL, NULL)) != NULL)
|
||||
if ((lstring = login_getcapstr(lc, cap, NULL, NULL)) != NULL)
|
||||
return arrayize(lstring, chars, NULL);
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue