Fix typo in last commit, use boolean AND not bitwise.

This commit is contained in:
Todd C. Miller
2021-09-24 10:57:12 -06:00
parent 1831176a1a
commit 1d203c8344

View File

@@ -331,7 +331,7 @@ main(int argc, char *argv[])
} }
/* Set pwutil backend to use the filter data. */ /* Set pwutil backend to use the filter data. */
if (conf->filter != NULL & !match_local) { if (conf->filter != NULL && !match_local) {
sudo_pwutil_set_backend(cvtsudoers_make_pwitem, cvtsudoers_make_gritem, sudo_pwutil_set_backend(cvtsudoers_make_pwitem, cvtsudoers_make_gritem,
cvtsudoers_make_gidlist_item, cvtsudoers_make_grlist_item); cvtsudoers_make_gidlist_item, cvtsudoers_make_grlist_item);
} else { } else {