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