diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-13 10:24:43 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-13 10:26:32 +0200 |
commit | dfd4828ad29b96d69c901b9f254de70594f88c60 (patch) | |
tree | 17f73763563db590ab90a856fb1c2876fa7e2016 /src/common/url.c | |
parent | 6f1185c00e71d158216de692916ff4710b73ebbf (diff) |
Fix opening folders in portable mode
Diffstat (limited to 'src/common/url.c')
-rw-r--r-- | src/common/url.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/url.c b/src/common/url.c index e258d5f1..1793717d 100644 --- a/src/common/url.c +++ b/src/common/url.c @@ -232,9 +232,11 @@ url_check_word (char *word, int len) const char *at, *dot; int i, dots; - /* this is pretty much the same as in logmask_is_fullpath() except with length checks */ + /* this is pretty much the same as in logmask_is_fullpath() except with length checks and .\ for portable mode */ #ifdef WIN32 - if ((len > 1 && word[0] == '\\') || (len > 2 && (((word[0] >= 'A' && word[0] <= 'Z') || (word[0] >= 'a' && word[0] <= 'z')) && word[1] == ':'))) + if ((len > 1 && word[0] == '\\') || + (len > 2 && word[0] == '.' && word[1] == '\\') || + (len > 2 && (((word[0] >= 'A' && word[0] <= 'Z') || (word[0] >= 'a' && word[0] <= 'z')) && word[1] == ':'))) #else if (len > 1 && word[0] == '/') #endif |