diff options
author | Paul Querna <pquerna@apache.org> | 2011-09-30 05:55:42 +0200 |
---|---|---|
committer | Paul Querna <pquerna@apache.org> | 2011-09-30 05:55:42 +0200 |
commit | 3bc7336e01c692d50914b7324122d89c89e10b44 (patch) | |
tree | 8156c39475fa602ebfb527ac0c1e87a532ab7579 /include/mod_auth.h | |
parent | Clarify configuration comment. (diff) | |
download | apache2-3bc7336e01c692d50914b7324122d89c89e10b44.tar.xz apache2-3bc7336e01c692d50914b7324122d89c89e10b44.zip |
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
Diffstat (limited to 'include/mod_auth.h')
-rw-r--r-- | include/mod_auth.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mod_auth.h b/include/mod_auth.h index 1a424b3147..9b9561e1d6 100644 --- a/include/mod_auth.h +++ b/include/mod_auth.h @@ -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 { |