You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dg...@hyperreal.org on 1997/12/18 20:49:41 UTC

cvs commit: apachen/src/modules/standard mod_autoindex.c

dgaudet     97/12/18 11:49:41

  Modified:    src/modules/standard mod_autoindex.c
  Log:
  more messed up indentation
  
  Revision  Changes    Path
  1.57      +8 -8      apachen/src/modules/standard/mod_autoindex.c
  
  Index: mod_autoindex.c
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/modules/standard/mod_autoindex.c,v
  retrieving revision 1.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- mod_autoindex.c	1997/11/12 21:37:45	1.56
  +++ mod_autoindex.c	1997/12/18 19:49:40	1.57
  @@ -753,14 +753,14 @@
       int reverse;
   
       if (!nosort) {
  -    qvalue[0] = '?';
  -    qvalue[1] = fname;
  -    qvalue[2] = '=';
  -    qvalue[4] = '\0';
  -    reverse = ((curkey == fname) && (curdirection == D_ASCENDING));
  -    qvalue[3] = reverse ? D_DESCENDING : D_ASCENDING;
  -    rvputs(r, "<A HREF=\"", qvalue, "\">", anchor, "</A>", NULL);
  -}
  +	qvalue[0] = '?';
  +	qvalue[1] = fname;
  +	qvalue[2] = '=';
  +	qvalue[4] = '\0';
  +	reverse = ((curkey == fname) && (curdirection == D_ASCENDING));
  +	qvalue[3] = reverse ? D_DESCENDING : D_ASCENDING;
  +	rvputs(r, "<A HREF=\"", qvalue, "\">", anchor, "</A>", NULL);
  +    }
       else {
           rputs(anchor, r);
       }