You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by "Ralf S. Engelschall" <rs...@hyperreal.org> on 1997/07/21 19:26:53 UTC

cvs commit: apache/src mod_rewrite.c

rse         97/07/21 10:26:52

  Modified:    src       mod_rewrite.c
  Log:
  Fixed coding style to be just consistent with the remaining stuff
  in this part of the source...
  
  Revision  Changes    Path
  1.36      +2 -2      apache/src/mod_rewrite.c
  
  Index: mod_rewrite.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_rewrite.c,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -C3 -r1.35 -r1.36
  *** mod_rewrite.c	1997/07/21 05:53:50	1.35
  --- mod_rewrite.c	1997/07/21 17:26:50	1.36
  ***************
  *** 2372,2378 ****
        if (conn->user == NULL) {
            ruser = "-";
        }
  !     else if (strlen (conn->user) != 0) {
            ruser = conn->user;
        }
        else {
  --- 2372,2378 ----
        if (conn->user == NULL) {
            ruser = "-";
        }
  !     else if (strlen(conn->user) != 0) {
            ruser = conn->user;
        }
        else {
  ***************
  *** 3235,3241 ****
    
    static int is_proxy_available(server_rec *s)
    {
  !     return find_linked_module ("mod_proxy") != NULL;
    }
    
    
  --- 3235,3241 ----
    
    static int is_proxy_available(server_rec *s)
    {
  !     return (find_linked_module("mod_proxy") != NULL);
    }