From: Hallvard Furuseth Date: Sun, 5 Sep 1999 20:53:13 +0000 (+0000) Subject: Kill //-style comments X-Git-Tag: TWEB_OL_BASE~20 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=07b9eb68a3a8dd981f17d2e9abb92fbe064abc36;p=openldap Kill //-style comments --- diff --git a/servers/slapd/acl.c b/servers/slapd/acl.c index 385f6a15a6..93690501c4 100644 --- a/servers/slapd/acl.c +++ b/servers/slapd/acl.c @@ -627,11 +627,11 @@ aci_list_has_right (struct berval *list, int access, int action) return(!action); #else if (action != 0) { - // check granted + /* check granted */ if (ACL_GRANT(right, access)) return(1); } else { - // check denied + /* check denied */ if (right <= access) return(1); }