Bug #2084 ยป mod_webdav.c.patch
mod_webdav.c 2009-10-17 01:42:54.000000000 +0900 | ||
---|---|---|
con->http_status = 400;
|
||
return HANDLER_FINISHED;
|
||
}
|
||
if (NULL != (sep2 = strchr(start, '@'))) {
|
||
if (NULL != (sep2 = memchr(start, '@', sep - start))) {
|
||
/* skip login information */
|
||
start = sep2 + 1;
|
||
}
|