You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@locus.apache.org on 2000/08/08 22:03:57 UTC

cvs commit: apache-2.0/src/modules/dav/main liveprop.c mod_dav.c opaquelock.c props.c util.c util_lock.c

stoddard    00/08/08 13:03:57

  Modified:    src/modules/dav/fs dbm.c lock.c repos.c
               src/modules/dav/main liveprop.c mod_dav.c opaquelock.c
                        props.c util.c util_lock.c
  Log:
  Updated patch to fix compile warnings from not including apr_strings.h
  
  Submitted by:	Joe Orton <jo...@orton.demon.co.uk>
  Reviewed by:	Bill Stoddard
  
  Revision  Changes    Path
  1.8       +1 -0      apache-2.0/src/modules/dav/fs/dbm.c
  
  Index: dbm.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/dav/fs/dbm.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- dbm.c	2000/08/02 05:26:55	1.7
  +++ dbm.c	2000/08/08 20:03:50	1.8
  @@ -67,6 +67,7 @@
   ** DAV_FS_STATE_FILE_FOR_DIR (.state_for_dir) for the directory itself.
   */
   
  +#include "apr_strings.h"
   #include "sdbm.h"
   
   #include "mod_dav.h"
  
  
  
  1.8       +1 -0      apache-2.0/src/modules/dav/fs/lock.c
  
  Index: lock.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/dav/fs/lock.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- lock.c	2000/08/02 05:26:55	1.7
  +++ lock.c	2000/08/08 20:03:50	1.8
  @@ -59,6 +59,7 @@
   #include "httpd.h"
   #include "http_log.h"
   #include "apr_file_io.h"
  +#include "apr_strings.h"
   
   #include "mod_dav.h"
   #include "dav_opaquelock.h"
  
  
  
  1.18      +1 -2      apache-2.0/src/modules/dav/fs/repos.c
  
  Index: repos.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/dav/fs/repos.c,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- repos.c	2000/08/06 06:07:37	1.17
  +++ repos.c	2000/08/08 20:03:50	1.18
  @@ -56,9 +56,8 @@
   ** DAV filesystem-based repository provider
   */
   
  -#include <string.h>
  -
   #include "apr_file_io.h"
  +#include "apr_strings.h"
   
   #include "httpd.h"
   #include "http_log.h"
  
  
  
  1.3       +1 -0      apache-2.0/src/modules/dav/main/liveprop.c
  
  Index: liveprop.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/dav/main/liveprop.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- liveprop.c	2000/08/02 05:26:59	1.2
  +++ liveprop.c	2000/08/08 20:03:51	1.3
  @@ -55,6 +55,7 @@
   #include "apr_pools.h"
   #include "apr_hash.h"
   #include "apr_errno.h"
  +#include "apr_strings.h"
   
   #include "ap_hooks.h"   /* ### for ap_global_hook_pool */
   #include "util_xml.h"   /* for ap_text_header */
  
  
  
  1.17      +1 -0      apache-2.0/src/modules/dav/main/mod_dav.c
  
  Index: mod_dav.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/dav/main/mod_dav.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- mod_dav.c	2000/08/06 06:07:38	1.16
  +++ mod_dav.c	2000/08/08 20:03:51	1.17
  @@ -88,6 +88,7 @@
   #include "http_protocol.h"
   #include "http_request.h"
   #include "util_script.h"
  +#include "apr_strings.h"
   
   #include "mod_dav.h"
   
  
  
  
  1.8       +1 -0      apache-2.0/src/modules/dav/main/opaquelock.c
  
  Index: opaquelock.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/dav/main/opaquelock.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- opaquelock.c	2000/08/08 19:03:20	1.7
  +++ opaquelock.c	2000/08/08 20:03:52	1.8
  @@ -88,6 +88,7 @@
   #include "httpd.h"
   #include "apr_md5.h"
   #include "apr_lib.h"
  +#include "apr_strings.h"
   
   #include "mod_dav.h"
   #include "dav_opaquelock.h"
  
  
  
  1.13      +1 -0      apache-2.0/src/modules/dav/main/props.c
  
  Index: props.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/dav/main/props.c,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- props.c	2000/08/02 05:26:59	1.12
  +++ props.c	2000/08/08 20:03:52	1.13
  @@ -182,6 +182,7 @@
   
   #include "http_log.h"
   #include "http_request.h"
  +#include "apr_strings.h"
   
   /*
   ** There is some rough support for writeable DAV:getcontenttype and
  
  
  
  1.8       +1 -0      apache-2.0/src/modules/dav/main/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/dav/main/util.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- util.c	2000/08/02 05:26:59	1.7
  +++ util.c	2000/08/08 20:03:52	1.8
  @@ -65,6 +65,7 @@
   #include "http_log.h"
   #include "http_protocol.h"
   
  +#include "apr_strings.h"
   
   dav_error *dav_new_error(apr_pool_t *p, int status, int error_id, const char *desc)
   {
  
  
  
  1.7       +1 -0      apache-2.0/src/modules/dav/main/util_lock.c
  
  Index: util_lock.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/dav/main/util_lock.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- util_lock.c	2000/08/02 05:26:59	1.6
  +++ util_lock.c	2000/08/08 20:03:52	1.7
  @@ -61,6 +61,7 @@
   #include "http_config.h"
   #include "http_protocol.h"
   #include "http_core.h"
  +#include "apr_strings.h"
   #include "memory.h"