diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-06-07 04:22:49 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-06-07 04:22:49 +0500 |
commit | 7e03b814ec0c9e408d3938a23077ae40a14b8593 (patch) | |
tree | b180c8d9880099a477b0a5e38bb36f9b4303f77c /plugins | |
parent | 90f1fb98a0d48690a42de0f44cf5c31d2ed0d25e (diff) | |
download | prosody-7e03b814ec0c9e408d3938a23077ae40a14b8593.tar.gz prosody-7e03b814ec0c9e408d3938a23077ae40a14b8593.zip |
mod_auth_anonymous: Fixed a syntax error.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_auth_anonymous.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_auth_anonymous.lua b/plugins/mod_auth_anonymous.lua index e0a6a6c7..214611d8 100644 --- a/plugins/mod_auth_anonymous.lua +++ b/plugins/mod_auth_anonymous.lua @@ -35,7 +35,7 @@ function new_default_provider(host) end function provider.create_user(username, password) - return nil, "Account creation/modification not supported."; end + return nil, "Account creation/modification not supported."; end function provider.get_sasl_handler() |