mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
d4a9748337
commit
eba401bc85
1 changed files with 2 additions and 2 deletions
|
@ -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--;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue