1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-08-13 16:53:48 -04:00

Nasty copy-paste problem

This commit is contained in:
Berke Viktor 2012-10-05 00:24:21 +02:00
parent fb2413793c
commit afe16e7bb7

View File

@ -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