Commit 1ab704ac authored by Sergey Lyubka's avatar Sergey Lyubka

Fixed -DMONGOOSE_NO_DIRECTORY_LISTING build

parent 2bc77e06
...@@ -3533,8 +3533,12 @@ static void handle_propfind(struct connection *conn, const char *path, ...@@ -3533,8 +3533,12 @@ static void handle_propfind(struct connection *conn, const char *path,
"<?xml version=\"1.0\" encoding=\"utf-8\"?>" "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
"<d:multistatus xmlns:d='DAV:'>\n"; "<d:multistatus xmlns:d='DAV:'>\n";
static const char footer[] = "</d:multistatus>"; static const char footer[] = "</d:multistatus>";
const char *depth = mg_get_header(&conn->mg_conn, "Depth"), const char *depth = mg_get_header(&conn->mg_conn, "Depth");
*list_dir = conn->server->config_options[ENABLE_DIRECTORY_LISTING]; #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; conn->mg_conn.status_code = 207;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment