| 68 | */ |
| 69 | |
| 70 | int |
| 71 | login_str2inlist(const char **ttlst, const char *str1, const char *str2, int flags) |
| 72 | { |
| 73 | int rc = 0; |
| 74 | |
| 75 | if (login_strinlist(ttlst, str1, flags)) |
| 76 | rc = 1; |
| 77 | else if (login_strinlist(ttlst, str2, flags)) |
| 78 | rc = 1; |
| 79 | return rc; |
| 80 | } |
| 81 | |
| 82 | |
| 83 | /* |
no test coverage detected