File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3724,7 +3724,7 @@ void printHelpText( std::string const & programName ) {
3724
3724
#if defined (USE_SSL)
3725
3725
std::cout << " -s : Use https protocol (default port " << DEFAULT_HTTPS_PORT << " )\n " ;
3726
3726
#endif
3727
- std::cout << " -h bind ip : Bind to ip address. (default ip is 0.0.0.0)\n " ;
3727
+ std::cout << " -l bind ip : Bind to ip address. (default ip is 0.0.0.0)\n " ;
3728
3728
std::cout << " -p portnumber : Run on port <portnumber> (default port is " << DEFAULT_HTTP_PORT << " )\n " ;
3729
3729
std::cout << " -r|--reset : Reset programming of the performance counters.\n " ;
3730
3730
std::cout << " -D|--debug level : level = 0: no debug info, > 0 increase verbosity.\n " ;
@@ -3790,7 +3790,7 @@ int mainThrows(int argc, char * argv[]) {
3790
3790
for ( int i=1 ; i < argc; ++i ) {
3791
3791
if ( check_argument_equals ( argv[i], {" -d" } ) )
3792
3792
daemonMode = true ;
3793
- else if ( check_argument_equals ( argv[i], {" -h " } ) )
3793
+ else if ( check_argument_equals ( argv[i], {" -l " } ) )
3794
3794
{
3795
3795
if ( (++i) < argc ) {
3796
3796
host = argv[i];
You can’t perform that action at this time.
0 commit comments