mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Oops fix swapped arguments creating excess data log.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19402 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
70d9256a67
commit
c7be1f8b37
1 changed files with 1 additions and 1 deletions
|
@ -2175,7 +2175,7 @@ NSDebugMLLog(@"GSMime", @"Header parsed - %@", info);
|
|||
dLength -= (rawBodyLength - expect);
|
||||
rawBodyLength = expect;
|
||||
excess = [d subdataWithRange:
|
||||
NSMakeRange([d length] - dLength, dLength)];
|
||||
NSMakeRange(dLength, [d length] - dLength)];
|
||||
NSLog(@"Excess data ignored: %@", excess);
|
||||
}
|
||||
[self decodeData: d
|
||||
|
|
Loading…
Reference in a new issue