mod_auth_imap: Fix typo in previous commit
authorMatthew Wild <mwild1@gmail.com>
Thu, 26 Sep 2013 18:35:42 +0100
changeset 1202 2cce28fe806b
parent 1201 744af76b7324
child 1203 5294c8c1861c
mod_auth_imap: Fix typo in previous commit
mod_auth_imap/auth_imap/mod_auth_imap.lua
--- a/mod_auth_imap/auth_imap/mod_auth_imap.lua	Thu Sep 26 18:30:46 2013 +0100
+++ b/mod_auth_imap/auth_imap/mod_auth_imap.lua	Thu Sep 26 18:35:42 2013 +0100
@@ -8,7 +8,7 @@
 local imap_host = module:get_option_string("imap_auth_host", "localhost");
 local imap_port = module:get_option_number("imap_auth_port");
 
-local imap_service_realm = module:get_option_string("imap_auth_realm", module_get_option("sasl_realm"));
+local imap_service_realm = module:get_option_string("imap_auth_realm", module:get_option("sasl_realm"));
 local imap_service_name = module:get_option_string("imap_auth_service_name");
 local append_host = module:get_option_boolean("auth_append_host");