You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2007/10/30 00:32:09 UTC

svn commit: r589909 - /apr/apr-util/trunk/include/apr_ssl.h

Author: trawick
Date: Mon Oct 29 16:32:08 2007
New Revision: 589909

URL: http://svn.apache.org/viewvc?rev=589909&view=rev
Log:
remove trailing comma from enum list

Modified:
    apr/apr-util/trunk/include/apr_ssl.h

Modified: apr/apr-util/trunk/include/apr_ssl.h
URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/include/apr_ssl.h?rev=589909&r1=589908&r2=589909&view=diff
==============================================================================
--- apr/apr-util/trunk/include/apr_ssl.h (original)
+++ apr/apr-util/trunk/include/apr_ssl.h Mon Oct 29 16:32:08 2007
@@ -43,7 +43,7 @@
  */
 typedef enum {
     APR_SSL_FACTORY_SERVER,   /**< Factory is for server operations */
-    APR_SSL_FACTORY_CLIENT,   /**< Factory is for client operations */
+    APR_SSL_FACTORY_CLIENT    /**< Factory is for client operations */
 } apr_ssl_factory_type_e;
 
 /**