Kill //-style comments

This commit is contained in:
Hallvard Furuseth 1999-09-05 20:53:13 +00:00
parent ed0e5393b4
commit 07b9eb68a3

View 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);
}