fixed bug causing option -p to not allow to change listenning port

This commit is contained in:
csoler 2019-10-23 20:11:30 +02:00
parent 56fa3edd77
commit 578a514007
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -306,7 +306,7 @@ int RsInit::InitRetroShare(const RsConfigOptions& conf)
if( rsInitConfig->outStderr) rsInitConfig->haveLogFile = false ; if( rsInitConfig->outStderr) rsInitConfig->haveLogFile = false ;
if(!rsInitConfig->logfname.empty()) rsInitConfig->haveLogFile = true; if(!rsInitConfig->logfname.empty()) rsInitConfig->haveLogFile = true;
if( rsInitConfig->inet != "127.0.0.1") rsInitConfig->forceLocalAddr = true; if( rsInitConfig->inet != "127.0.0.1") rsInitConfig->forceLocalAddr = true;
if( rsInitConfig->port != 0) rsInitConfig->forceExtPort = true; if( rsInitConfig->port != 0) rsInitConfig->forceExtAddr = true;
#ifdef LOCALNET_TESTING #ifdef LOCALNET_TESTING
if(!portRestrictions.empty()) doPortRestrictions = true; if(!portRestrictions.empty()) doPortRestrictions = true;
#endif #endif