mod_s2s: Fix import of core_process_stanza. I don't know why I thought it was there (thanks Zash)
authorMatthew Wild <mwild1@gmail.com>
Sat, 28 Apr 2012 16:29:00 +0100
changeset 4782 28e7664924bd
parent 4781 51ed468662a1
child 4783 21c513a89951
mod_s2s: Fix import of core_process_stanza. I don't know why I thought it was there (thanks Zash)
plugins/s2s/mod_s2s.lua
--- a/plugins/s2s/mod_s2s.lua	Sat Apr 28 16:22:17 2012 +0100
+++ b/plugins/s2s/mod_s2s.lua	Sat Apr 28 16:29:00 2012 +0100
@@ -10,7 +10,7 @@
 
 local prosody = prosody;
 local hosts = prosody.hosts;
-local core_process_stanza = prosody.core_process_stanza;
+local core_process_stanza = core_process_stanza;
 
 local tostring, type = tostring, type;
 local t_insert = table.insert;