Hi Jim,
> Here's what I'd like to propose:

>    o) We do another triple release: 1.3.40, 2.0.62 and 2.2.7
>    o) I tag and roll all 3 this Saturday (Dec 29th)
>    o) We anticipate releasing/announcing all on Jan 2, 2008

> It would be a great New Year's gift to the community :)
great! Hehe, new update work for the admins!! 

would you agree that I commit this type correction to mod_ssl 2.0.x?
votes from Bill and me, and one missing....

http://people.apache.org/~fuankg/diffs/ssl_scache_shmht.c.diff

--- ssl_scache_shmht.c.orig     Wed Jul 12 09:40:56 2006
+++ ssl_scache_shmht.c  Sun Nov 25 17:32:58 2007
@@ -198,7 +198,7 @@
     SSLModConfigRec *mc = myModConfig(s);
     void *vp;
     SSL_SESSION *sess = NULL;
-    UCHAR *ucpData;
+    MODSSL_D2I_SSL_SESSION_CONST UCHAR *ucpData;
     int nData;
     time_t expiry;
     time_t now;
@@ -223,7 +223,7 @@
         return NULL;
     }
     memcpy(&expiry, vp, sizeof(time_t));
-    memcpy(ucpData, (char *)vp+sizeof(time_t), nData);
+    memcpy((void *)ucpData, (char *)vp+sizeof(time_t), nData);
     ssl_mutex_off(s);
 
     /* make sure the stuff is still not expired */

thanks, Guenter.


Reply via email to