# HG changeset patch # User Matthew Wild # Date 1273616291 -3600 # Node ID cd66229bdd7fa2827d8980a414e32cf23fc186f7 # Parent 4f13cc5f96b0b577b14e94cee04b1d785a3b7a45 verse.plugins.tls: Return true to indicate success loading plugin diff -r 4f13cc5f96b0 -r cd66229bdd7f plugins/tls.lua --- 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