From 4600b14725718ebc7ddfded425a2e49f33396deb Mon Sep 17 00:00:00 2001 From: User Hunchentoot Date: Mon, 3 Mar 2014 18:56:43 -0500 Subject: [PATCH] Fix return-from for session-verify. --- pg-sessions.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pg-sessions.lisp b/pg-sessions.lisp index 8ab3fb0..213ee0e 100644 --- a/pg-sessions.lisp +++ b/pg-sessions.lisp @@ -167,7 +167,7 @@ will not create a new one." (unless (and session-identifier (stringp session-identifier) (plusp (length session-identifier))) - (return-from session-verify nil)) + (return-from hunchentoot:session-verify nil)) (destructuring-bind (id-string session-string) (cl-ppcre:split ":" session-identifier :limit 2) (let* ((id (parse-integer id-string))