r9057: package/system rename for cl-base64
[wol.git] / uri.lisp
index 751684d59decb232e612c840ee759d94706f25b2..dbcc1a9569019b653a391ef95b1886776a1a3c90 100644 (file)
--- a/uri.lisp
+++ b/uri.lisp
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  July 2003
 ;;;;
-;;;; $Id: uri.lisp,v 1.11 2003/08/15 14:04:57 kevin Exp $
+;;;; $Id$
 ;;;;
 ;;;; This file and Wol are Copyright (c) 2003 by Kevin M. Rosenberg
 ;;;; *************************************************************************
   (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)))))