From: Greg Stein Date: Fri, 6 Oct 2000 19:45:52 +0000 (+0000) Subject: recent changes bungled the state of the EEXIST test. X-Git-Tag: APACHE_2_0_ALPHA_7~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b8a5407a3d0318d4080415e5b690a924e593e5d8;p=apache recent changes bungled the state of the EEXIST test. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86419 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/dav/fs/repos.c b/modules/dav/fs/repos.c index b00a86c6db..36cc1927c0 100644 --- a/modules/dav/fs/repos.c +++ b/modules/dav/fs/repos.c @@ -402,7 +402,7 @@ static dav_error * dav_fs_copymove_state( /* ensure that it exists */ rv = apr_make_dir(dst, APR_OS_DEFAULT, p); if (rv != APR_SUCCESS) { - if (APR_STATUS_IS_EEXIST(rv)) { + if (!APR_STATUS_IS_EEXIST(rv)) { /* ### use something besides 500? */ return dav_new_error(p, HTTP_INTERNAL_SERVER_ERROR, 0, "Could not create internal state directory"); @@ -557,7 +557,9 @@ static dav_error *dav_fs_deleteset(apr_pool_t *p, const dav_resource *resource) static dav_resource * dav_fs_get_resource( request_rec *r, const char *root_dir, - const char *workspace) + const char *workspace, + const char *target, + int is_label) { dav_resource_private *ctx; dav_resource *resource; @@ -881,20 +883,20 @@ static void dav_fs_free_file(void *free_handle) /* nothing to free ... */ } -static dav_error * dav_fs_create_collection(apr_pool_t *p, dav_resource *resource) +static dav_error * dav_fs_create_collection(dav_resource *resource) { dav_resource_private *ctx = resource->info; apr_status_t status; - status = apr_make_dir(ctx->pathname, APR_OS_DEFAULT, p); + status = apr_make_dir(ctx->pathname, APR_OS_DEFAULT, ctx->pool); if (status == ENOSPC) { - return dav_new_error(p, HTTP_INSUFFICIENT_STORAGE, 0, + return dav_new_error(ctx->pool, HTTP_INSUFFICIENT_STORAGE, 0, "There is not enough storage to create " "this collection."); } else if (status != APR_SUCCESS) { /* ### refine this error message? */ - return dav_new_error(p, HTTP_FORBIDDEN, 0, + return dav_new_error(ctx->pool, HTTP_FORBIDDEN, 0, "Unable to create collection."); }