Changeset 4908
- Timestamp:
- Feb 3, 2008, 7:03:39 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0x/daemon/remote.c
r4549 r4908 226 226 227 227 printf( 228 "usage: %s [options]\n" 228 "usage: %s [options] [files...]\n" 229 " %s -x [options] proxy-command [args...]\n" 229 230 "\n" 230 231 "Transmission %s http://www.transmissionbt.com/\n" … … 258 259 " -U --upload-unlimited No upload rate limit\n" 259 260 " -x --proxy Use proxy command to connect to frontend\n", 260 getmyname(), LONG_VERSION_STRING );261 getmyname(), getmyname(), LONG_VERSION_STRING ); 261 262 exit( 0 ); 262 263 } … … 412 413 case 'x': 413 414 opts->proxy = 1; 414 break;415 continue; /* don't set gotmsg, -x isn't a message */ 415 416 default: 416 417 usage( NULL ); … … 427 428 if( opts->proxy ) 428 429 { 430 if( argc == optind ) 431 usage( "can't use -x without any arguments" ); 429 432 opts->proxycmd = argv + optind; 430 433 }
Note: See TracChangeset
for help on using the changeset viewer.