Skip to content
Snippets Groups Projects
Commit a7cf5d5f authored by rtoy's avatar rtoy
Browse files

Fix typo in unix-uname. We want to use "uname" everywhere except on

freebsd and solaris/x86.
parent ec46ec01
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.133 2010/12/22 02:15:39 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.134 2011/01/07 03:46:42 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -3391,7 +3391,7 @@ ...@@ -3391,7 +3391,7 @@
(defun unix-uname () (defun unix-uname ()
(with-alien ((names (struct utsname))) (with-alien ((names (struct utsname)))
(syscall* (#-(or freebsd solaris) "uname" (syscall* (#-(or freebsd (and x86 solaris)) "uname"
#+(and x86 solaris) "nuname" ; See /usr/include/sys/utsname.h #+(and x86 solaris) "nuname" ; See /usr/include/sys/utsname.h
#+freebsd "__xuname" #+freebsd int #+freebsd "__xuname" #+freebsd int
(* (struct utsname))) (* (struct utsname)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment