From 9c96b8e29c239a4b74b840e6e1b13a4d590d4da2 Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Wed, 31 Aug 2005 17:34:52 +0000 Subject: [PATCH] 0.9.4.22: Oops, should've tested that last commit also on FC4 too. Thanks to David Lichteblau for noticing the typo. --- src/runtime/linux-os.c | 4 ++-- version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/runtime/linux-os.c b/src/runtime/linux-os.c index 8fe0ca7..6724d15 100644 --- a/src/runtime/linux-os.c +++ b/src/runtime/linux-os.c @@ -141,7 +141,7 @@ os_init(char *argv[], char *envp[]) futex_wait(futex,-1); if(errno==ENOSYS) { lose("This version of sbcl is compiled with threading support, but your kernel is too old to support this.\n\ -Please use a more recent kernel or a version of SBCL without threading support.\n"); +Please use a more recent kernel or a version of sbcl without threading support.\n"); } if(! isnptl()) { lose("This version of sbcl only works correctly with the NPTL threading library. Please use a newer glibc, older sbcl or stop using LD_ASSUME_KERNEL"); @@ -169,7 +169,7 @@ Please use a more recent kernel or a version of SBCL without threading support.\ * name of the process as "exe". */ char runtime[PATH_MAX+1]; - int i = readlink("/proc/self/exe", runtime, PATH_MAX) != -1; + int i = readlink("/proc/self/exe", runtime, PATH_MAX); if (i != -1) { runtime[i] = '\0'; execve(runtime, argv, envp); diff --git a/version.lisp-expr b/version.lisp-expr index 7d4368e..0d899a1 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.9.4.21" +"0.9.4.22" -- 1.7.10.4