Changeset 7331 for trunk/daemon/remote.c
- Timestamp:
- Dec 9, 2008, 5:01:49 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/daemon/remote.c
r7202 r7331 100 100 { 'r', "remove", "Remove the current torrent(s)", 101 101 "r", 0, NULL }, 102 { 'R', "remove-and-delete", "Remove the current torrent(s) and delete local data", 103 NULL, 0, NULL }, 102 104 { 's', "start", "Start the current torrent(s)", 103 105 "s", 0, NULL }, … … 413 415 tr_bencDictAddStr( &top, "method", "torrent-remove" ); 414 416 addIdArg( args, id ); 417 break; 418 419 case 'R': 420 tr_bencDictAddStr( &top, "method", "torrent-remove" ); 421 addIdArg( args, id ); 422 tr_bencDictAddInt( args, "delete-local-data", 1 ); 415 423 break; 416 424
Note: See TracChangeset
for help on using the changeset viewer.