Fixup incorrect instance of single quotes to double quotes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22646 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2006-03-13 06:23:39 +00:00
parent fadc20abd9
commit 320cd23ae0

View file

@ -712,11 +712,11 @@ static id parsePlItem(pldata* pld)
len--; len--;
// Allow for quoted values. // Allow for quoted values.
if (ptr[0] == '\'' && len > 1) if (ptr[0] == '"' && len > 1)
{ {
len--; len--;
ptr++; ptr++;
if (ptr[len - 1] == '\'') if (ptr[len - 1] == '"')
{ {
len--; len--;
} }