You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pq...@apache.org on 2011/09/30 05:55:43 UTC

svn commit: r1177497 - /httpd/httpd/trunk/include/mod_auth.h

Author: pquerna
Date: Fri Sep 30 03:55:42 2011
New Revision: 1177497

URL: http://svn.apache.org/viewvc?rev=1177497&view=rev
Log:
Remove trailing comma on last enum member for authz_status

Modified:
    httpd/httpd/trunk/include/mod_auth.h

Modified: httpd/httpd/trunk/include/mod_auth.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/mod_auth.h?rev=1177497&r1=1177496&r2=1177497&view=diff
==============================================================================
--- httpd/httpd/trunk/include/mod_auth.h (original)
+++ httpd/httpd/trunk/include/mod_auth.h Fri Sep 30 03:55:42 2011
@@ -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 {