Changeset 1059
- Timestamp:
- Nov 9, 2006, 4:38:32 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/tracker.c
r1001 r1059 238 238 uint64_t up; 239 239 char * start; 240 int numwant = 50; 240 241 241 242 down = tor->downloadedCur; … … 259 260 { 260 261 event = "&event=stopped"; 262 numwant = 0; 261 263 } 262 264 else … … 286 288 "left=%"PRIu64"&" 287 289 "compact=1&" 288 "numwant= 50&"290 "numwant=%d&" 289 291 "key=%s" 290 292 "%s", 291 293 inf->trackerAnnounce, start, tor->hashString, tc->id, 292 tc->bindPort, up, down, left, tor->key, event );294 tc->bindPort, up, down, left, numwant, tor->key, event ); 293 295 } 294 296 -
trunk/macosx/English.lproj/MainMenu.nib/info.nib
r1056 r1059 32 32 <key>IBOpenObjects</key> 33 33 <array> 34 <integer>456</integer>35 34 <integer>21</integer> 36 35 </array> -
trunk/macosx/Torrent.m
r1054 r1059 1040 1040 //if cannot trash, just delete it (will work if it is on a remote volume) 1041 1041 if (![[NSFileManager defaultManager] removeFileAtPath: path handler: nil]) 1042 NSLog( [@"Could not trash " stringByAppendingString: path]);1042 NSLog(@"Could not trash %@", path); 1043 1043 } 1044 1044 }
Note: See TracChangeset
for help on using the changeset viewer.