Software /
code /
prosody
Comparison
plugins/s2s/mod_s2s.lua @ 4578:da0528c59c52
mod_s2s: Add missing local table.insert
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 01 Mar 2012 00:14:53 +0100 |
parent | 4576:79c813c4ecc0 |
child | 4580:351936a8de4a |
comparison
equal
deleted
inserted
replaced
4576:79c813c4ecc0 | 4578:da0528c59c52 |
---|---|
7 -- | 7 -- |
8 | 8 |
9 module:set_global(); | 9 module:set_global(); |
10 | 10 |
11 local tostring, type = tostring, type; | 11 local tostring, type = tostring, type; |
12 local t_insert = table.insert; | |
12 local xpcall, traceback = xpcall, debug.traceback; | 13 local xpcall, traceback = xpcall, debug.traceback; |
13 | 14 |
14 local add_task = require "util.timer".add_task; | 15 local add_task = require "util.timer".add_task; |
15 local st = require "util.stanza"; | 16 local st = require "util.stanza"; |
16 local initialize_filters = require "util.filters".initialize; | 17 local initialize_filters = require "util.filters".initialize; |