diff --git a/ChangeLog b/ChangeLog index e9a247396..41eec06ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-07-23 Richard Frith-Macdonald + + * Source/Additions/GSXML.m: fix typo in contributed code for when + the additions library is built standalone on MacOS-X + 2005-07-22 Richard Frith-Macdonald * Source/NSDate.m: ([isEqual:]),([isEqualToDate:]) change behavior to diff --git a/Source/Additions/GSXML.m b/Source/Additions/GSXML.m index 8365fe627..9fe69ea8f 100644 --- a/Source/Additions/GSXML.m +++ b/Source/Additions/GSXML.m @@ -5139,7 +5139,7 @@ static void indentation(unsigned level, NSMutableString *str) NSMutableURLRequest *request; request = [NSMutableURLRequest alloc]; - request = [tequest initWithURL: [NSURL URLWithString: connectionURL]]; + request = [request initWithURL: [NSURL URLWithString: connectionURL]]; [request setCachePolicy: NSURLRequestReloadIgnoringCacheData]; [request setHTTPMethod: @"POST"]; [request setValue: @"GSXMLRPC/1.0.0" forHTTPHeaderField: @"User-Agent"];