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
commite7c0815019ee81eeff6bd14f837b9d067f57275d (patch)
treea019e1eb544e67b6d900165e113e9827e022c293 /core
parentbeb69a4ab0828ffee82eec66e495b1fb02efe661 (diff)
downloadprosody-e7c0815019ee81eeff6bd14f837b9d067f57275d.tar.gz
prosody-e7c0815019ee81eeff6bd14f837b9d067f57275d.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