- Timestamp:
- Aug 14, 2006, 10:59:30 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/clients.c
r773 r775 94 94 { 95 95 if (id[0] != 0) 96 { 96 97 asprintf( &ret, "unknown client (%c%c%c%c%c%c%c%c)", 97 98 id[0], id[1], id[2], id[3], id[4], id[5], id[6], id[7] ); 99 } 98 100 else 101 { 99 102 asprintf( &ret, "unknown client" ); 103 } 100 104 } 101 105 -
trunk/macosx/InfoWindowController.m
r762 r775 452 452 else if ([ident isEqualToString: @"DL From"]) 453 453 return [[peer objectForKey: @"DL From"] boolValue] ? @"Y" : @""; 454 else if ([ident isEqualToString: @"Client"]) 455 return [peer objectForKey: @"Client"]; 454 456 else 455 return [peer objectForKey: @" Client"];457 return [peer objectForKey: @"IP"]; 456 458 } 457 459 else -
trunk/macosx/Torrent.m
r772 r775 529 529 530 530 [peerDics addObject: [NSDictionary dictionaryWithObjectsAndKeys: 531 [NSString stringWithCString: (char *) peer.addr encoding: NSUTF8StringEncoding], @"IP", 531 532 [NSString stringWithCString: (char *) peer.client encoding: NSUTF8StringEncoding], @"Client", 532 533 [NSNumber numberWithBool: peer.isDownloading], @"UL To",
Note: See TracChangeset
for help on using the changeset viewer.