]> granicus.if.org Git - sudo/commitdiff
sudo_ldap_check_non_unix_group() returns bool, not int.
authorTodd C. Miller <Todd.Miller@courtesan.com>
Thu, 7 May 2015 16:43:26 +0000 (10:43 -0600)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Thu, 7 May 2015 16:43:26 +0000 (10:43 -0600)
plugins/sudoers/ldap.c

index d12c5668da2c35b8fd977588f3869ebdbc493083..9817905a08fd2e1bab2c05fda35b95edd7186b66 100644 (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)