mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-04 02:20:48 +00:00
parsing fix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@8131 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ce72dc7261
commit
c51e0e9750
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2000-11-16 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/NSURL.m: ([-explode]) bugfix for parsing username/password
|
||||||
|
provided by mark@brainstorm.co.uk
|
||||||
|
|
||||||
2000-11-16 Richard Frith-Macdonald <rfm@gnu.org>
|
2000-11-16 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/GSTcpPort.m: Altered all GSTcpHandle debug output to include
|
* Source/GSTcpPort.m: Altered all GSTcpHandle debug output to include
|
||||||
|
|
|
@ -358,7 +358,7 @@ NSString *NSURLPartKey_query = @"query";
|
||||||
{
|
{
|
||||||
NSString *sub;
|
NSString *sub;
|
||||||
|
|
||||||
sub = [userPassword substringToIndex:
|
sub = [userPassword substringFromIndex:
|
||||||
range.location + 1];
|
range.location + 1];
|
||||||
[elements setObject: sub
|
[elements setObject: sub
|
||||||
forKey: NSURLPartKey_password];
|
forKey: NSURLPartKey_password];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue