Update of /cvsroot/sbcl/sbcl/contrib/sb-bsd-sockets
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv26928/contrib/sb-bsd-sockets
Modified Files:
inet.lisp
Log Message:
1.0.15.34: tweak the PCL cache improvement from 1.0.15.12
* Thanks to Paul Khuong for noting that we weren't actually dropping
50% of the entries, but somewhat less. Now (assuming our RANDOM is
good) we really should average 50%.
Index: inet.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/contrib/sb-bsd-sockets/inet.lisp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- inet.lisp 14 Mar 2008 19:44:25 -0000 1.11
+++ inet.lisp 14 Mar 2008 20:41:26 -0000 1.12
@@ -25,7 +25,7 @@
\"127.0.0.1\". Signals an error if the string is malformed."
(declare (type string dotted-quads))
(labels ((oops ()
- (error "~S is not a string designating an IP address."
+ (error "~S is not a string designating an IP address."
dotted-quads))
(check (x)
(if (typep x '(unsigned-byte 8))
|