2001-06-21
2001-06-21 10:23:27 by Marcus Wellhardh <wellhard@roxen.com>
-
9b6b1be7817f9a7c53ca7671c73d45e466b8d692
(5 lines)
(+3/-2)
[
Show
| Annotate
]
Branch: 5.2
Fixed typo in STRIP_BSLASH code.
Rev: server/base_server/configuration.pike:1.439
3:
//
// A site's main configuration
- constant cvs_version = "$Id: configuration.pike,v 1.438 2001/06/17 20:30:20 nilsson Exp $";
+ constant cvs_version = "$Id: configuration.pike,v 1.439 2001/06/21 10:23:27 wellhard Exp $";
#include <module.h>
#include <module_constants.h>
#include <roxen.h>
1251: Inside #if defined(__NT__) || defined(STRIP_BSLASH)
{
werror("a: "+id->not_query+"\n");
int ss = (<'/','\\'>)[ id->not_query[0] ];
- id->not_query = combine_path("/",replace(X,"\\","/"));
+ id->not_query = combine_path("/",replace(id->not_query,"\\","/"));
if( !ss ) id->not_query = id->not_query[1..];
werror("b: "+id->not_query+"\n");
}