Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: какие клиенты используе те для работы с nginx по DAV?
On Wed, Jun 09, 2010 at 10:59:15PM +0400, Игорь Хомяков wrote:
> здесь http://tools.ietf.org/html/rfc4918#section-10.3 написано что он
> *может* быть абсолютным,
> и в примерах Destination абсолютный, но я не вижу требования этого.
>
> поправте меня пож-ста если я не прав.
Патч.
--
Игорь Сысоев
http://sysoev.ru
Index: src/http/modules/ngx_http_dav_module.c
===================================================================
--- src/http/modules/ngx_http_dav_module.c (revision 2931)
+++ src/http/modules/ngx_http_dav_module.c (working copy)
@@ -535,6 +535,15 @@
return NGX_HTTP_BAD_REQUEST;
}
+ p = dest->value.data;
+
+ /* there is always '\0' even after empty header value */
+
+ if (p[0] == '/') {
+ last = p + dest->value.len;
+ goto destination_done;
+ }
+
len = r->headers_in.server.len;
if (len == 0) {
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|