diff options
-rw-r--r-- | CHANGES.md | 1 | ||||
-rw-r--r-- | scheduler/client.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md index 072a58e3f..624921b50 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -35,6 +35,7 @@ Changes in CUPS v2.3b8 - Fixed some PPD caching and IPP Everywhere PPD accounting/password bugs (Issue #5535) - Fixed `PreserveJobHistory` bug with time values (Issue #5538) +- The scheduler no longer advertises the HTTP methods it supports (Issue #5540) - Localization updates (Issue #5461, Issues #5471, Issue #5481, Issue #5486, Issue #5489, Issue #5491, Issue #5492, Issue #5493, Issue #5494, Issue #5495, Issue #5497, Issue #5499, Issue #5500, Issue #5501, Issue #5504) diff --git a/scheduler/client.c b/scheduler/client.c index 153a6e443..df146f4c2 100644 --- a/scheduler/client.c +++ b/scheduler/client.c @@ -951,8 +951,6 @@ cupsdReadClient(cupsd_client_t *con) /* I - Client to read from */ } httpClearFields(con->http); - httpSetField(con->http, HTTP_FIELD_ALLOW, - "GET, HEAD, OPTIONS, POST, PUT"); httpSetField(con->http, HTTP_FIELD_CONTENT_LENGTH, "0"); if (!cupsdSendHeader(con, HTTP_STATUS_OK, NULL, CUPSD_AUTH_NONE)) |