Fix compilation -- add missing comma.

This commit is contained in:
Daniel Wilcox 2018-11-20 06:36:07 +00:00
parent 70da0c0e3b
commit deeea8143f
No known key found for this signature in database
GPG Key ID: 394F75F16F682D87

View File

@ -309,7 +309,7 @@ establish_http_connection (struct conn_s *connptr, struct request_s *request)
/* Allow websockets to not be closed after handshake. */ /* Allow websockets to not be closed after handshake. */
return write_message (connptr->server_fd, return write_message (connptr->server_fd,
"%s %s HTTP/1.0\r\n" "%s %s HTTP/1.0\r\n"
"Host: %s%s\r\n" "Host: %s%s\r\n",
request->method, request->path, request->method, request->path,
request->host, portbuff); request->host, portbuff);
} else { } else {