]> git.sur5r.net Git - openldap/commitdiff
Kill //-style comments
authorHallvard Furuseth <hallvard@openldap.org>
Sun, 5 Sep 1999 20:53:13 +0000 (20:53 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Sun, 5 Sep 1999 20:53:13 +0000 (20:53 +0000)
servers/slapd/acl.c

index 385f6a15a6a107e815aa1679e0aecad8c3072f60..93690501c4d3e9777c17b46b319fd187ce84fb64 100644 (file)
@@ -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);
                }