Fixed bug caused by forgotten parentheses.

This commit is contained in:
mainzelm 2001-10-09 19:45:31 +00:00
parent 9ff4f45d42
commit 4f91395748
1 changed files with 3 additions and 3 deletions

View File

@ -207,9 +207,9 @@
(> (string-length name) 107))
(error "bind-socket: path too long" name))
(else
%bind (socket->fdes sock)
family
(socket-address:address name)))))))
(%bind (socket->fdes sock)
family
(socket-address:address name))))))))
(import-os-error-syscall %bind (sockfd family name) "scheme_bind")