Skip to content

Commit

Permalink
dep: clozure: fix removed call
Browse files Browse the repository at this point in the history
CCL had non-exported `host-as-inet-host' which was removed. Fixes #20.
  • Loading branch information
dkochmanski committed Aug 18, 2016
1 parent ea1a469 commit 9b210e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dep-openmcl.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@
(declare (clx-values list))
(ecase family
((:internet nil 0)
(let* ((addr (ccl::htonl (ccl::host-as-inet-host host))))
(let* ((addr (ccl:lookup-hostname host)))
(cons :internet (list
(ldb (byte 8 24) addr)
(ldb (byte 8 16) addr)
Expand Down

0 comments on commit 9b210e8

Please sign in to comment.