You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@locus.apache.org on 2000/05/30 16:31:04 UTC

cvs commit: apache-2.0/src/modules/experimental mod_charset_lite.c

trawick     00/05/30 07:31:04

  Modified:    src/modules/experimental mod_charset_lite.c
  Log:
  An xlate configuration module shouldn't mess with BO_WXLATE;
  ap_set_content_xlate() takes care of that detail.
  
  Revision  Changes    Path
  1.2       +0 -7      apache-2.0/src/modules/experimental/mod_charset_lite.c
  
  Index: mod_charset_lite.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/experimental/mod_charset_lite.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- mod_charset_lite.c	2000/05/26 17:40:42	1.1
  +++ mod_charset_lite.c	2000/05/30 14:31:04	1.2
  @@ -238,13 +238,6 @@
           return HTTP_INTERNAL_SERVER_ERROR;
       }
   
  -    rv = ap_bsetopt(r->connection->client, BO_WXLATE, &r->rrx->to_net);
  -    if (rv != APR_SUCCESS) {
  -        ap_log_error(APLOG_MARK, APLOG_ERR, rv, r->server,
  -                     "can't set translation; BO_WXLATE->%d\n", rv);
  -        return HTTP_INTERNAL_SERVER_ERROR;
  -    }
  -
       return DECLINED;
   }