(trunk) add tr_torrent_stat.id to RPC documentation. Rename tr_tracker_stat.identifier as tr_tracker_stat.id for consistency with tr_torrent.id

This commit is contained in:
Charles Kerr
2010-01-13 22:40:07 +00:00
parent 73f4d29ce3
commit a77770a51a
7 changed files with 16 additions and 14 deletions

View File

@@ -361,7 +361,7 @@ addTrackers( const tr_info * info,
const tr_tracker_info * t = &info->trackers[i];
tr_benc * d = tr_bencListAddDict( trackers, 4 );
tr_bencDictAddStr( d, "announce", t->announce );
tr_bencDictAddInt( d, "identifier", t->identifier );
tr_bencDictAddInt( d, "id", t->id );
tr_bencDictAddStr( d, "scrape", t->scrape );
tr_bencDictAddInt( d, "tier", t->tier );
}