- Fixed a compressed file error handling bug (Issue #1070)
- Fixed a bug in the make-and-model whitespace trimming code (Issue #1096)
- Fixed a removal of IPP Everywhere permanent queue if installation failed (Issue #1102)
+- Fixed `ServerToken None` in scheduler (Issue #1111)
- Fixed the default User-Agent string.
- Fixed a recursion issue in `ippReadIO`.
con->serverport = httpAddrPort(&(lis->address));
}
+ /*
+ * Apply ServerHeader if any
+ */
+
+ if (ServerHeader)
+ httpSetDefaultField(con->http, HTTP_FIELD_SERVER, ServerHeader);
+
/*
* Add the connection to the array of active clients...
*/
code = HTTP_STATUS_OK;
}
- if (ServerHeader)
- httpSetField(con->http, HTTP_FIELD_SERVER, ServerHeader);
-
if (code == HTTP_STATUS_METHOD_NOT_ALLOWED)
httpSetField(con->http, HTTP_FIELD_ALLOW, "GET, HEAD, OPTIONS, POST, PUT");