You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Marc Slemko <ma...@hyperreal.com> on 1997/02/07 08:13:17 UTC

cvs commit: apache/src mod_negotiation.c

marc        97/02/06 23:13:16

  Modified:    src       mod_negotiation.c
  Log:
  handle_multi() was not setting content_language.
  
  Submitted by: Petr Lampa <la...@fee.vutbr.cz>
  Reviewed by: Paul Sutton, Marc Slemko, Dean Gaudet
  
  Revision  Changes    Path
  1.32      +1 -0      apache/src/mod_negotiation.c
  
  Index: mod_negotiation.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_negotiation.c,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -C3 -r1.31 -r1.32
  *** mod_negotiation.c	1997/02/07 06:36:07	1.31
  --- mod_negotiation.c	1997/02/07 07:13:15	1.32
  ***************
  *** 1940,1945 ****
  --- 1940,1946 ----
        r->content_type = sub_req->content_type;
        r->content_encoding = sub_req->content_encoding;
        r->content_languages = sub_req->content_languages;
  +     r->content_language = sub_req->content_language;
        r->finfo = sub_req->finfo;
        
        return OK;