From 1ab704ac92521e8e9f4b451dd8186955e3113b1b Mon Sep 17 00:00:00 2001 From: Sergey Lyubka <valenok@gmail.com> Date: Thu, 16 Oct 2014 10:46:33 +0100 Subject: [PATCH] Fixed -DMONGOOSE_NO_DIRECTORY_LISTING build --- mongoose.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mongoose.c b/mongoose.c index b0070fd22..5f20d6b2c 100644 --- a/mongoose.c +++ b/mongoose.c @@ -3533,8 +3533,12 @@ static void handle_propfind(struct connection *conn, const char *path, "<?xml version=\"1.0\" encoding=\"utf-8\"?>" "<d:multistatus xmlns:d='DAV:'>\n"; static const char footer[] = "</d:multistatus>"; - const char *depth = mg_get_header(&conn->mg_conn, "Depth"), - *list_dir = conn->server->config_options[ENABLE_DIRECTORY_LISTING]; + const char *depth = mg_get_header(&conn->mg_conn, "Depth"); +#ifdef MONGOOSE_NO_DIRECTORY_LISTING + const char *list_dir = "no"; +#else + const char *list_dir = conn->server->config_options[ENABLE_DIRECTORY_LISTING]; +#endif conn->mg_conn.status_code = 207; -- GitLab