1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 01:27:28 +00:00

(trunk mac) maybe fix the mac build

This commit is contained in:
Charles Kerr 2009-11-26 05:40:27 +00:00
parent 1101f6710e
commit be853dd07b
2 changed files with 2 additions and 2 deletions

View file

@ -1020,7 +1020,7 @@ typedef enum
case TR_PEER_FROM_INCOMING:
[components addObject: NSLocalizedString(@"From: incoming connection", "Inspector -> Peers tab -> table row tooltip")];
break;
case TR_PEER_FROM_CACHE:
case TR_PEER_FROM_RESUME:
[components addObject: NSLocalizedString(@"From: cache", "Inspector -> Peers tab -> table row tooltip")];
break;
case TR_PEER_FROM_PEX:

View file

@ -1146,7 +1146,7 @@ int trashDataFile(const char * filename)
- (NSInteger) totalPeersCache
{
return fStat->peersFrom[TR_PEER_FROM_CACHE];
return fStat->peersFrom[TR_PEER_FROM_RESUME];
}
- (NSInteger) totalPeersPex