[cl-xmpp-cvs] CVS update: cl-xmpp/cl-xmpp-tls.lisp

Erik Enge eenge at common-lisp.net
Sat Nov 12 04:30:57 UTC 2005


Update of /project/cl-xmpp/cvsroot/cl-xmpp
In directory common-lisp.net:/tmp/cvs-serv28229

Modified Files:
	cl-xmpp-tls.lisp 
Log Message:
begin-tls-stream -> convert-to-tls-stream

Date: Sat Nov 12 05:30:57 2005
Author: eenge

Index: cl-xmpp/cl-xmpp-tls.lisp
diff -u cl-xmpp/cl-xmpp-tls.lisp:1.2 cl-xmpp/cl-xmpp-tls.lisp:1.3
--- cl-xmpp/cl-xmpp-tls.lisp:1.2	Sat Nov 12 05:20:21 2005
+++ cl-xmpp/cl-xmpp-tls.lisp	Sat Nov 12 05:30:57 2005
@@ -1,4 +1,4 @@
-;;;; $Id: cl-xmpp-tls.lisp,v 1.2 2005/11/12 04:20:21 eenge Exp $
+;;;; $Id: cl-xmpp-tls.lisp,v 1.3 2005/11/12 04:30:57 eenge Exp $
 ;;;; $Source: /project/cl-xmpp/cvsroot/cl-xmpp/cl-xmpp-tls.lisp,v $
 
 ;;;; See the LICENSE file for licensing information.
@@ -9,7 +9,7 @@
   "Connect to the host and start a TLS stream."
   (let ((connection (apply #'connect args)))
     (send-starttls connection)
-    (begin-tls-stream connection)
+    (convert-to-tls-stream connection)
     connection))
 
 (defmethod send-starttls ((connection connection))




More information about the Cl-xmpp-cvs mailing list