mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-17 11:11:46 +00:00
Fix bug adding extra quotes
This commit is contained in:
parent
0619a30840
commit
2c8528d973
1 changed files with 1 additions and 1 deletions
|
@ -2383,7 +2383,7 @@ static BOOL snuggleStart(NSString *t)
|
||||||
*/
|
*/
|
||||||
if (up != nil && [up isEqual: [name lastPathComponent]] == NO)
|
if (up != nil && [up isEqual: [name lastPathComponent]] == NO)
|
||||||
{
|
{
|
||||||
[str appendString: @"\" up=\""];
|
[str appendString: @" up=\""];
|
||||||
[str appendString: up];
|
[str appendString: up];
|
||||||
[str appendString: @"\""];
|
[str appendString: @"\""];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue