You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2003/09/22 21:26:21 UTC

cvs commit: httpd-2.0/modules/ssl ssl_util.c

wrowe       2003/09/22 12:26:21

  Modified:    modules/ssl ssl_util.c
  Log:
    SSL-C doesn't declare the char* file arg const, so we shouldn't either.
  
  Revision  Changes    Path
  1.41      +2 -2      httpd-2.0/modules/ssl/ssl_util.c
  
  Index: ssl_util.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_util.c,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- ssl_util.c	24 Jul 2003 15:35:05 -0000	1.40
  +++ ssl_util.c	22 Sep 2003 19:26:21 -0000	1.41
  @@ -405,10 +405,10 @@
   #ifdef HAVE_SSLC
   #if SSLC_VERSION_NUMBER >= 0x2000
   static int ssl_util_thr_lock(int mode, int type,
  -                              const char *file, int line)
  +                             char *file, int line)
   #else
   static void ssl_util_thr_lock(int mode, int type,
  -                              const char *file, int line)
  +                              char *file, int line)
   #endif
   #else
   static void ssl_util_thr_lock(int mode, int type,