1
0
mirror of https://github.com/apache/httpd.git synced 2025-11-09 15:21:02 +03:00

Remove trailing comma on last enum member for authz_status

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1177497 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Paul Querna
2011-09-30 03:55:42 +00:00
parent 37581e8385
commit 3bc7336e01

View File

@@ -74,7 +74,7 @@ typedef enum {
AUTHZ_GRANTED,
AUTHZ_NEUTRAL,
AUTHZ_GENERAL_ERROR,
AUTHZ_DENIED_NO_USER, /* denied because r->user == NULL */
AUTHZ_DENIED_NO_USER /* denied because r->user == NULL */
} authz_status;
typedef struct {