sudo_ldap_check_non_unix_group() returns bool, not int.

This commit is contained in:
Todd C. Miller
2015-05-07 10:43:26 -06:00
parent eea4e1afd9
commit d16434f977

View File

@@ -673,7 +673,7 @@ sudo_ldap_check_non_unix_group(LDAP *ld, LDAPMessage *entry, struct passwd *pw)
{
struct berval **bv, **p;
char *val;
int ret = false;
bool ret = false;
debug_decl(sudo_ldap_check_non_unix_group, SUDOERS_DEBUG_LDAP)
if (!entry)