Changeset

66:cd66229bdd7f

verse.plugins.tls: Return true to indicate success loading plugin
author Matthew Wild <mwild1@gmail.com>
date Tue, 11 May 2010 23:18:11 +0100
parents 65:4f13cc5f96b0
children 67:8154b72591d5
files plugins/tls.lua
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/tls.lua	Tue May 11 23:17:00 2010 +0100
+++ b/plugins/tls.lua	Tue May 11 23:18:11 2010 +0100
@@ -30,4 +30,6 @@
 	stream:hook("stream-features", handle_features, 400);
 	stream:hook("stream/"..xmlns_tls, handle_tls);
 	stream:hook("status", handle_status, 400);
+	
+	return true;
 end