chuck 96/07/28 15:40:56
Modified: src mod_negotiation.c
Log:
Reviewed by: Chuck Murcko
Submitted by: Ralf S. Engelschall
Prevent conflicts when ProxyRemote is in use
Revision Changes Path
1.11 +3 -0 apache/src/mod_negotiation.c
Index: mod_negotiation.c
===================================================================
RCS file: /export/home/cvs/apache/src/mod_negotiation.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -C3 -r1.10 -r1.11
*** mod_negotiation.c 1996/07/28 19:27:49 1.10
--- mod_negotiation.c 1996/07/28 22:40:55 1.11
***************
*** 593,598 ****
--- 593,601 ----
if (!(filp = strrchr (r->filename, '/'))) return DECLINED; /* Weird...
*/
+ if (strncmp(r->filename, "proxy:", 6) == 0)
+ return DECLINED;
+
++filp;
prefix_len = strlen (filp);