X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-bsd-sockets%2Finet.lisp;h=e6265ed45e8da3990ee6f8c38461fbdfc039e00b;hb=27763fafd1b170518ac2e85b9344fdddddcfd7c5;hp=5879341567a3b60c0764ccc0c563cb2a56d60309;hpb=5eb1bc45f5bd68638ae861dd8bd81c33ae6cd14d;p=sbcl.git diff --git a/contrib/sb-bsd-sockets/inet.lisp b/contrib/sb-bsd-sockets/inet.lisp index 5879341..e6265ed 100644 --- a/contrib/sb-bsd-sockets/inet.lisp +++ b/contrib/sb-bsd-sockets/inet.lisp @@ -42,7 +42,7 @@ using getprotobyname(2) which typically looks in NIS or /etc/protocols" ;; for extra brownie points, could return canonical protocol name ;; and aliases as extra values (let ((ent (sockint::getprotobyname name))) - (if (sb-grovel::foreign-nullp ent) + (if (sb-alien::null-alien ent) (error 'unknown-protocol :name name)) (sockint::protoent-proto ent)))