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:
Richard Frith-MacDonald 2006-03-13 06:23:39 +00:00
parent d4a9748337
commit eba401bc85

View file

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