You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/07/23 19:31:09 UTC

cvs commit: apache-2.0/src/modules/standard mod_autoindex.c

rbb         00/07/23 10:31:08

  Modified:    src/lib/apr/strings apr_strnatcmp.c
               src/modules/standard mod_autoindex.c
  Removed:     src/lib/apr/include apr_strnatcmp.h
  Log:
  Remove apr_strnatcmp.h.  All of the functions prototyped in this file
  have been moved to apr_strings.h.  This also modifes Apache to include
  apr_strings.h instead of apr_strnatcmp.h
  
  Revision  Changes    Path
  1.2       +1 -1      apache-2.0/src/lib/apr/strings/apr_strnatcmp.c
  
  Index: apr_strnatcmp.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/strings/apr_strnatcmp.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- apr_strnatcmp.c	2000/07/21 19:50:45	1.1
  +++ apr_strnatcmp.c	2000/07/23 17:31:08	1.2
  @@ -25,7 +25,7 @@
   #include <assert.h>
   #include <stdio.h>
   
  -#include "apr_strnatcmp.h"
  +#include "apr_strings.h"
   
   #if defined(__GNUC__)
   #  define UNUSED __attribute__((__unused__))
  
  
  
  1.39      +1 -1      apache-2.0/src/modules/standard/mod_autoindex.c
  
  Index: mod_autoindex.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_autoindex.c,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- mod_autoindex.c	2000/07/21 19:50:53	1.38
  +++ mod_autoindex.c	2000/07/23 17:31:08	1.39
  @@ -77,7 +77,7 @@
   #include "http_main.h"
   #include "util_script.h"
   #include "apr_fnmatch.h"
  -#include "apr_strnatcmp.h"
  +#include "apr_strings.h"
   #ifdef HAVE_STRING_H
   #include <string.h>
   #endif