pull/1/head
Tatsuhiro Tsujikawa 2006-03-21 16:54:42 +00:00
parent 01118364a5
commit 4b6181b6d1
1 changed files with 2 additions and 2 deletions

View File

@ -392,9 +392,9 @@ int main(int argc, char* argv[]) {
torrentFile = string(optarg);
break;
case 16:
if(string(optarg) == "on") {
if(string(optarg) == "true") {
followTorrent = true;
} else if(string(optarg) == "off") {
} else if(string(optarg) == "false") {
followTorrent = false;
} else {
cerr << _("follow-torrent must be either 'true' or 'false'.") << endl;