Mercurial > prosody-hg
comparison plugins/mod_auth_cyrus.lua @ 3292:f2ac2ead80b1
mod_auth_anonymous, mod_auth_cyrus: Removed unused variables.
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Thu, 24 Jun 2010 03:33:09 +0500 |
| parents | c06b3f7c92b1 |
| children | 26751c628207 |
comparison
equal
deleted
inserted
replaced
| 3291:c06b3f7c92b1 | 3292:f2ac2ead80b1 |
|---|---|
| 6 -- This project is MIT/X11 licensed. Please see the | 6 -- This project is MIT/X11 licensed. Please see the |
| 7 -- COPYING file in the source package for more information. | 7 -- COPYING file in the source package for more information. |
| 8 -- | 8 -- |
| 9 | 9 |
| 10 local log = require "util.logger".init("auth_cyrus"); | 10 local log = require "util.logger".init("auth_cyrus"); |
| 11 local type = type; | |
| 12 local ipairs = ipairs; | |
| 13 local jid_bare = require "util.jid".bare; | |
| 14 local config = require "core.configmanager"; | |
| 15 | 11 |
| 16 local cyrus_service_realm = module:get_option("cyrus_service_realm"); | 12 local cyrus_service_realm = module:get_option("cyrus_service_realm"); |
| 17 local cyrus_service_name = module:get_option("cyrus_service_name"); | 13 local cyrus_service_name = module:get_option("cyrus_service_name"); |
| 18 local cyrus_application_name = module:get_option("cyrus_application_name"); | 14 local cyrus_application_name = module:get_option("cyrus_application_name"); |
| 19 | 15 |
