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/05 22:23:28 UTC

cvs commit: apache-2.0/src/lib/apr/lib apr_tables.c

rbb         00/07/05 13:23:25

  Modified:    src/lib/apr/lib apr_tables.c
  Log:
  Fix some code after the last cleanup.  This just makes the tables compile
  again, bu making them use the correct macro.
  
  Revision  Changes    Path
  1.22      +1 -1      apache-2.0/src/lib/apr/lib/apr_tables.c
  
  Index: apr_tables.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/lib/apr_tables.c,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- apr_tables.c	2000/06/28 14:33:31	1.21
  +++ apr_tables.c	2000/07/05 20:23:20	1.22
  @@ -735,7 +735,7 @@
        * appropriate.
        */
   
  -    if (flags & ap_OVERLAP_TABLES_MERGE) {
  +    if (flags & AP_OVERLAP_TABLES_MERGE) {
   	left = cat_keys;
   	last = left + nkeys;
   	while (left < last) {