0.9.4.22:
authorJuho Snellman <jsnell@iki.fi>
Wed, 31 Aug 2005 17:34:52 +0000 (17:34 +0000)
committerJuho Snellman <jsnell@iki.fi>
Wed, 31 Aug 2005 17:34:52 +0000 (17:34 +0000)
 Oops, should've tested that last commit also on FC4 too.
 Thanks to David Lichteblau for noticing the typo.

src/runtime/linux-os.c
version.lisp-expr

index 8fe0ca7..6724d15 100644 (file)
@@ -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);
index 7d4368e..0d899a1 100644 (file)
@@ -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"