From 2f09db1d4fe16a6bfa461ba5f05a5e5edd647337 Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Fri, 5 Oct 2012 00:30:35 +0200 Subject: [PATCH] Fix operator precedence oversight (AND vs OR) --- src/common/text.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/text.c b/src/common/text.c index bf55f8ca..c24c8358 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