Fix authentication URL...

This commit is contained in:
Adam Ierymenko 2021-05-25 14:49:06 -04:00
parent 6ce71c1bc3
commit 810e2a761f
No known key found for this signature in database
GPG key ID: C8877CF2D7A5D7F3
2 changed files with 4 additions and 3 deletions

View file

@ -227,7 +227,7 @@ public:
{
Mutex::Lock _l(_lock);
_netconfFailure = NETCONF_FAILURE_AUTHENTICATION_REQUIRED;
_authorizationURL = (url) ? url : "";
_authenticationURL = (url) ? url : "";
}
/**
@ -449,7 +449,7 @@ private:
NETCONF_FAILURE_AUTHENTICATION_REQUIRED
} _netconfFailure;
int _portError; // return value from port config callback
std::string _authorizationURL;
std::string _authenticationURL;
Hashtable<Address,Membership> _memberships;