Fix "Fix URL detection". First-character test in linux should be for
equal, rather than not-equal. If first character is a slash return WORD_PATH.
This commit is contained in:
parent
8df11c030c
commit
5f60820eba
|
@ -207,7 +207,7 @@ url_check_word (char *word, int len)
|
|||
#ifdef WIN32
|
||||
if ((len > 1 && word[0] == '\\') || (len > 2 && (((word[0] >= 'A' && word[0] <= 'Z') || (word[0] >= 'a' && word[0] <= 'z')) && word[1] == ':')))
|
||||
#else
|
||||
if (len > 1 && word[0] != '/')
|
||||
if (len > 1 && word[0] == '/')
|
||||
#endif
|
||||
{
|
||||
return WORD_PATH;
|
||||
|
|
Loading…
Reference in New Issue