mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-27 04:09:31 +03:00
MHD_queue_response(): fixed check for HTTP/1.0 mode
This commit is contained in:
@@ -4318,8 +4318,8 @@ MHD_queue_response (struct MHD_Connection *connection,
|
||||
#endif
|
||||
return MHD_NO;
|
||||
}
|
||||
if (0 != response->flags & (MHD_RF_HTTP_VERSION_1_0_ONLY
|
||||
| MHD_RF_HTTP_VERSION_1_0_RESPONSE))
|
||||
if (0 != (response->flags & (MHD_RF_HTTP_VERSION_1_0_ONLY
|
||||
| MHD_RF_HTTP_VERSION_1_0_RESPONSE)))
|
||||
{
|
||||
#ifdef HAVE_MESSAGES
|
||||
MHD_DLOG (daemon,
|
||||
|
||||
Reference in New Issue
Block a user