fix #489, Address::operator== is broken

This commit is contained in:
Emiel Bruijntjes 2023-01-10 10:45:43 +01:00
parent 0a8c26be52
commit 6ddabe4ead
1 changed files with 2 additions and 2 deletions

View File

@ -333,8 +333,8 @@ public:
// portnumber must match
if (_port != that._port) return false;
// and finally the vhosts, they must match too
if (_vhost == that._vhost) return false;
// and the vhosts, they must match too
if (_vhost != that._vhost) return false;
// and the options as well
return _options == that._options;