fix an if statment. Found by thomas.

svn path=/trunk/; revision=17592
This commit is contained in:
Brandon Turner 2005-08-29 19:09:41 +00:00
parent d261fc0b2b
commit ac2b9c20d7

View file

@ -690,7 +690,7 @@ VOID CompleteFilename (LPTSTR strIN, BOOL bNext, LPTSTR strOut, INT cusor)
}
/* insert the quoation and move things around */
if(szPrefix[LastSpace + 1] == _T('\"') && LastSpace != -1)
if(szPrefix[LastSpace + 1] != _T('\"') && LastSpace != -1)
{
/* add another char or you will lose a null char ending */
_tcsncat(szPrefix,&szPrefix[_tcslen(szPrefix) - 1],1);