From: Mark Wooding Date: Sun, 22 Apr 2012 17:55:48 +0000 (+0100) Subject: sys.lisp: Use OS:UNAME rather than UNIX:GET-HOST-NAME in CLisp. X-Git-Url: https://git.distorted.org.uk/~mdw/zone/commitdiff_plain/9b01dd96bd9056ac720b42a5f433d58e5b37169a sys.lisp: Use OS:UNAME rather than UNIX:GET-HOST-NAME in CLisp. The latter appears to have been withdrawn in later versions of CLisp. --- diff --git a/sys.lisp b/sys.lisp index 9f900f7..bcc8433 100644 --- a/sys.lisp +++ b/sys.lisp @@ -42,7 +42,7 @@ (sb-unix:unix-gethostname) #+clisp - (unix:get-host-name) + (os:uname-nodename (os:uname)) #+ecl (cffi:with-foreign-pointer-as-string (buffer 256 len)