mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-22 18:08:23 +00:00
Fix typo in last commit, use boolean AND not bitwise.
This commit is contained in:
parent
1831176a1a
commit
1d203c8344
@ -331,7 +331,7 @@ main(int argc, char *argv[])
|
||||
}
|
||||
|
||||
/* 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,
|
||||
cvtsudoers_make_gidlist_item, cvtsudoers_make_grlist_item);
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user