Skip to content

Commit 4dbd2a1

Browse files
rstonigeltao
authored andcommitted
webdav: Return HTTP 404 for PROPFIND/PROPPATCH requests on an inexistent
webdav.Dir resource. Change-Id: If28dc1853cc3f393a53bf8f0e0f0bb87328c3d29 Reviewed-on: https://go-review.googlesource.com/10394 Reviewed-by: Nigel Tao <nigeltao@golang.org>
1 parent 7ca853d commit 4dbd2a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webdav/webdav.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ func (h *Handler) handleUnlock(w http.ResponseWriter, r *http.Request) (status i
468468
func (h *Handler) handlePropfind(w http.ResponseWriter, r *http.Request) (status int, err error) {
469469
fi, err := h.FileSystem.Stat(r.URL.Path)
470470
if err != nil {
471-
if err == os.ErrNotExist {
471+
if os.IsNotExist(err) {
472472
return http.StatusNotFound, err
473473
}
474474
return http.StatusMethodNotAllowed, err
@@ -532,7 +532,7 @@ func (h *Handler) handleProppatch(w http.ResponseWriter, r *http.Request) (statu
532532
defer release()
533533

534534
if _, err := h.FileSystem.Stat(r.URL.Path); err != nil {
535-
if err == os.ErrNotExist {
535+
if os.IsNotExist(err) {
536536
return http.StatusNotFound, err
537537
}
538538
return http.StatusMethodNotAllowed, err

0 commit comments

Comments
 (0)