aboutsummaryrefslogtreecommitdiffstats
path: root/prosody
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2011-09-21 03:23:47 +0500
committerWaqas Hussain <waqas20@gmail.com>2011-09-21 03:23:47 +0500
commit1b9a04c3fb142b00d8bb966da1beba2ccc71b0d2 (patch)
tree6e1db5d2bacc2936165186f0a3a540131167c77b /prosody
parent108aa8061b43f9a69962a389e7dd947d1bdc9331 (diff)
downloadprosody-1b9a04c3fb142b00d8bb966da1beba2ccc71b0d2.tar.gz
prosody-1b9a04c3fb142b00d8bb966da1beba2ccc71b0d2.zip
prosody: Invalid escape sequence in componentmanager deprecation warning (can cause luajit to throw).
Diffstat (limited to 'prosody')
-rwxr-xr-xprosody2
1 files changed, 1 insertions, 1 deletions
diff --git a/prosody b/prosody
index 3f328433..b354089b 100755
--- a/prosody
+++ b/prosody
@@ -338,7 +338,7 @@ function load_secondary_libraries()
require "core.sessionmanager"
require "core.stanza_router"
package.loaded['core.componentmanager'] = setmetatable({},{__index=function()
- log("warn", "componentmanager is deprecated: %s", debug.traceback():match("\n[^\n]*\n[\s\t]*([^\n]*)"));
+ log("warn", "componentmanager is deprecated: %s", debug.traceback():match("\n[^\n]*\n[ \t]*([^\n]*)"));
return function() end
end});