From: Kevin M. Rosenberg Date: Sun, 4 Jan 2004 03:00:20 +0000 (+0000) Subject: r8477: handle new names X-Git-Url: http://git.kpe.io/?p=wol.git;a=commitdiff_plain;h=ccfdf49bbf6cba3759e18b18b5f365af41b1940a r8477: handle new names --- diff --git a/uri.lisp b/uri.lisp index ba476fe..dbcc1a9 100644 --- a/uri.lisp +++ b/uri.lisp @@ -158,12 +158,12 @@ (let ((str (plist-to-compressed-string plist))) (if base64 (string-to-base64-string str :uri t) - (uriencode-string str)))) + (encode-uri-string str)))) (defun url-string-to-plist (str &key (base64 t)) (let ((decode (if base64 (base64-string-to-string str :uri t) - (uridecode-string str)))) + (decode-uri-string str)))) (when decode (ignore-errors (compressed-string-to-plist decode)))))