aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lazybones-hunchentoot.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lazybones-hunchentoot.lisp b/lazybones-hunchentoot.lisp
index 8f9b604..e60ebc5 100644
--- a/lazybones-hunchentoot.lisp
+++ b/lazybones-hunchentoot.lisp
@@ -166,8 +166,8 @@ the value of the Content-Type request header."
(defmethod h:acceptor-dispatch-request ((acceptor lazybones-acceptor) request)
(loop for app in (acceptor-apps acceptor)
- for (endpoint . args) = (lzb:find-endpoint app request)
+ for (endpoint . args) = (lzb::find-endpoint app request)
when endpoint
- return (lzb:run-endpoint endpoint args request h:*reply* app)
+ return (lzb::run-endpoint endpoint args request h:*reply* app)
;; if no endpoint was found, call next method.
finally (call-next-method)))