diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-05 00:24:21 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-05 00:24:21 +0200 |
commit | afe16e7bb7da877ed65c2461e4113e920121c225 (patch) | |
tree | c752e8b53e22f5757e64ff174d3d9361a92f149a /src | |
parent | fb2413793c18fd45bf1aa9205f0fec3e02ceecf5 (diff) |
Nasty copy-paste problem
Diffstat (limited to 'src')
-rw-r--r-- | src/common/text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/text.c b/src/common/text.c index 29efab98..bf55f8ca 100644 --- a/src/common/text.c +++ b/src/common/text.c @@ -585,7 +585,7 @@ logmask_is_fullpath () * - starts with '\' which denotes the root directory of the current drive letter * - starts with a drive letter and followed by ':' */ - if (prefs.logmask[0] >= '\\' || ((prefs.logmask[0] >= 'A' && prefs.logmask[0] <= 'Z') || (prefs.logmask[0] >= 'a' && prefs.logmask[0] <= 'z') && prefs.logmask[1] == ':')) + if (prefs.logmask[0] == '\\' || ((prefs.logmask[0] >= 'A' && prefs.logmask[0] <= 'Z') || (prefs.logmask[0] >= 'a' && prefs.logmask[0] <= 'z') && prefs.logmask[1] == ':')) #else if (prefs.logmask[0] == '/') #endif |