mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
web: Avoid deprecated '_IOFBF'.
* module/web/client.scm (open-socket-for-uri): Use 'block instead of _IOFBF.
This commit is contained in:
parent
011669af3b
commit
aa86fcb7d9
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ host name without trailing dot."
|
|||
(with-https-proxy
|
||||
(let ((s (open-socket)))
|
||||
;; Buffer input and output on this port.
|
||||
(setvbuf s _IOFBF %http-receive-buffer-size)
|
||||
(setvbuf s 'block %http-receive-buffer-size)
|
||||
|
||||
(if https?
|
||||
(tls-wrap s (uri-host uri))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue