aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-08-30 18:51:55 +0200
committerKim Alvefur <zash@zash.se>2013-08-30 18:51:55 +0200
commit67027c1b3727b7828b0998038a94dde51af92557 (patch)
treea019e1eb544e67b6d900165e113e9827e022c293 /core
parente1fd6042c80f2c72b63f4f9a64d19fbfeac42232 (diff)
downloadprosody-67027c1b3727b7828b0998038a94dde51af92557.tar.gz
prosody-67027c1b3727b7828b0998038a94dde51af92557.zip
configmanager: Fix checking of absolute paths on Windows
Diffstat (limited to 'core')
-rw-r--r--core/configmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/configmanager.lua b/core/configmanager.lua
index 9720f48a..d73bafa4 100644
--- a/core/configmanager.lua
+++ b/core/configmanager.lua
@@ -77,7 +77,7 @@ do
local is_relative;
if path_sep == "/" and path:sub(1,1) ~= "/" then
is_relative = true;
- elseif path_sep == "\\" and (path:sub(1,1) ~= "/" and (path:sub(2,3) ~= ":\\" or path:sub(2,3) ~= ":/")) then
+ elseif path_sep == "\\" and (path:sub(1,1) ~= "/" and (path:sub(2,3) ~= ":\\" and path:sub(2,3) ~= ":/")) then
is_relative = true;
end
if is_relative then