mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-12 16:23:07 -07:00
Fix mingw64 build error
mingw64 defines interface, so revert back to previous naming scheme
Fixes: 87864531ab
Closes #13649
This commit is contained in:
parent
424e2c76fa
commit
a5f8f1f0f5
2 changed files with 4 additions and 4 deletions
|
@ -2686,10 +2686,10 @@ QString Session::networkInterface() const
|
|||
return m_networkInterface;
|
||||
}
|
||||
|
||||
void Session::setNetworkInterface(const QString &interface)
|
||||
void Session::setNetworkInterface(const QString &iface)
|
||||
{
|
||||
if (interface != networkInterface()) {
|
||||
m_networkInterface = interface;
|
||||
if (iface != networkInterface()) {
|
||||
m_networkInterface = iface;
|
||||
configureListeningInterface();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue