Commit 0adbfcba authored by Sergey Lyubka's avatar Sergey Lyubka

Moved send_options out of NO_DAV conditional

parent 136c3e82
......@@ -2641,6 +2641,7 @@ static void forward_put_data(struct connection *conn) {
}
}
}
#endif // NO_DAV
static void send_options(struct connection *conn) {
static const char reply[] = "HTTP/1.1 200 OK\r\nAllow: GET, POST, HEAD, "
......@@ -2648,7 +2649,6 @@ static void send_options(struct connection *conn) {
spool(&conn->remote_iobuf, reply, sizeof(reply) - 1);
conn->flags |= CONN_SPOOL_DONE;
}
#endif // NO_DAV
#ifndef NO_AUTH
void mg_send_digest_auth_request(struct mg_connection *c) {
......
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