VirtualBox

Changeset 49612 in vbox for trunk/src


Ignore:
Timestamp:
Nov 21, 2013 4:36:00 PM (11 years ago)
Author:
vboxsync
Message:

NATNetworkImpl.cpp: FindDHCPServerByNetworkName() returns HRESULT, but no int.
[-Wc++11-narrowing]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/NATNetworkImpl.cpp

    r49587 r49612  
    894894         * 6. start dhcp server.
    895895         */
    896         int rc = mVirtualBox->FindDHCPServerByNetworkName(mName.raw(),
     896        HRESULT hrc = mVirtualBox->FindDHCPServerByNetworkName(mName.raw(),
    897897                                                      m->dhcpServer.asOutParam());
    898         switch (rc)
     898        switch (hrc)
    899899        {
    900900            case E_INVALIDARG:
    901901                /* server haven't beeen found let create it then */
    902                 rc = mVirtualBox->CreateDHCPServer(mName.raw(),
     902                hrc = mVirtualBox->CreateDHCPServer(mName.raw(),
    903903                                                   m->dhcpServer.asOutParam());
    904                 if (FAILED(rc))
     904                if (FAILED(hrc))
    905905                  return E_FAIL;
    906906                /* breakthrough */
     
    913913                         Utf8Str(m->IPv4DhcpServerUpperIp.raw()).c_str()));
    914914
    915                 rc = m->dhcpServer->COMSETTER(Enabled)(true);
     915                hrc = m->dhcpServer->COMSETTER(Enabled)(true);
    916916
    917917                BSTR dhcpip = NULL;
     
    924924                m->IPv4DhcpServerLowerIp.cloneTo(&lowerip);
    925925                m->IPv4DhcpServerUpperIp.cloneTo(&upperip);
    926                 rc = m->dhcpServer->SetConfiguration(dhcpip,
     926                hrc = m->dhcpServer->SetConfiguration(dhcpip,
    927927                                                     netmask,
    928928                                                     lowerip,
     
    939939        m->dhcpServer->AddGlobalOption(DhcpOpt_Router, m->IPv4Gateway.raw());
    940940
    941         rc = m->dhcpServer->Start(mName.raw(), Bstr("").raw(), aTrunkType);
    942         if (FAILED(rc))
     941        hrc = m->dhcpServer->Start(mName.raw(), Bstr("").raw(), aTrunkType);
     942        if (FAILED(hrc))
    943943        {
    944944            m->dhcpServer.setNull();
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette