Index: login_access.c =================================================================== RCS file: /private/FreeBSD/src/lib/libpam/modules/pam_login_access/login_access.c,v retrieving revision 1.11 diff -u -p -r1.11 login_access.c --- login_access.c 3 Feb 2002 15:17:57 -0000 1.11 +++ login_access.c 15 Mar 2004 19:22:49 -0000 @@ -126,7 +126,7 @@ list_match(char *list, const char *item, for (tok = strtok(list, sep); tok != 0; tok = strtok((char *) 0, sep)) { if (strcasecmp(tok, "EXCEPT") == 0) /* EXCEPT: give up */ break; - if ((match = (*match_fn)(tok, item)) != NULL) /* YES */ + if ((match = (*match_fn)(tok, item)) != 0) /* YES */ break; } /* Process exceptions to matches. */