From 2c2ac594768a1052fdf191e7f519b1f527de1d4b Mon Sep 17 00:00:00 2001 From: emarsden <emarsden> Date: Wed, 5 Mar 2003 15:54:52 +0000 Subject: [PATCH] In UNIX-LSEEK, return (values nil errno) on failure instead of (values nil t). This fixes a silly mistake in the recent LFS changes. --- code/unix-glibc2.lisp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/unix-glibc2.lisp b/code/unix-glibc2.lisp index a20f06692..15df8ad8f 100644 --- a/code/unix-glibc2.lisp +++ b/code/unix-glibc2.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix-glibc2.lisp,v 1.22 2003/03/03 16:03:40 pmai Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix-glibc2.lisp,v 1.23 2003/03/05 15:54:52 emarsden Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1790,7 +1790,9 @@ length LEN and type TYPE." (extern-alien "lseek64" (function off-t int off-t int)) fd offset whence))) (if (minusp result) - (values nil (unix-get-errno)) + (progn + (unix-get-errno) + (values nil unix-errno)) (values result 0)))) -- GitLab