Don't print a space after ":" in RFC 822 headers.
This commit is contained in:
parent
c0281e834a
commit
91b2f35f0d
scheme/httpd
|
@ -350,7 +350,7 @@
|
||||||
(define (send-http-header-fields headers port)
|
(define (send-http-header-fields headers port)
|
||||||
(for-each (lambda (pair)
|
(for-each (lambda (pair)
|
||||||
(display (car pair) port)
|
(display (car pair) port)
|
||||||
(display ": " port)
|
(write-char #\: port)
|
||||||
(display (cdr pair) port)
|
(display (cdr pair) port)
|
||||||
(write-crlf port))
|
(write-crlf port))
|
||||||
headers))
|
headers))
|
||||||
|
|
Loading…
Reference in New Issue