VirtualBox

Changeset 51259 in vbox


Ignore:
Timestamp:
May 15, 2014 2:44:19 PM (11 years ago)
Author:
vboxsync
Message:

VBoxManage: use constants rather than plain values and use RT_STR_TUPLE

Location:
trunk/src/VBox/Frontends/VBoxManage
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp

    r50996 r51259  
    11021102                }
    11031103                /* host drive? */
    1104                 else if (!RTStrNICmp(ValueUnion.psz, "host:", 5))
     1104                else if (!RTStrNICmp(ValueUnion.psz, RT_STR_TUPLE("host:")))
    11051105                {
    11061106                    ComPtr<IHost> host;
     
    11801180                    }
    11811181                    /* host drive? */
    1182                     else if (!RTStrNICmp(ValueUnion.psz, "host:", 5))
     1182                    else if (!RTStrNICmp(ValueUnion.psz, RT_STR_TUPLE("host:")))
    11831183                    {
    11841184                        ComPtr<IHost> host;
     
    17031703                CHECK_ERROR(nic, COMGETTER(NATEngine)(engine.asOutParam()));
    17041704                if (RTStrCmp(ValueUnion.psz, "default") == 0)
    1705                 {
    17061705                    aliasMode = 0;
    1707                 }
    17081706                else
    17091707                {
    17101708                    char *token = (char *)ValueUnion.psz;
    1711                     while(token)
     1709                    while (token)
    17121710                    {
    1713                         if (RTStrNCmp(token, "log", 3) == 0)
    1714                             aliasMode |= 0x1;
    1715                         else if (RTStrNCmp(token, "proxyonly", 9) == 0)
    1716                             aliasMode |= 0x2;
    1717                         else if (RTStrNCmp(token, "sameports", 9) == 0)
    1718                             aliasMode |= 0x4;
     1711                        if (RTStrNCmp(token, RT_STR_TUPLE("log")) == 0)
     1712                            aliasMode |= NATAliasMode_AliasLog;
     1713                        else if (RTStrNCmp(token, RT_STR_TUPLE("proxyonly")) == 0)
     1714                            aliasMode |= NATAliasMode_AliasProxyOnly;
     1715                        else if (RTStrNCmp(token, RT_STR_TUPLE("sameports")) == 0)
     1716                            aliasMode |= NATAliasMode_AliasUseSamePorts;
    17191717                        token = RTStrStr(token, ",");
    17201718                        if (token == NULL)
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageStorageController.cpp

    r49190 r51259  
    552552            // find the medium given
    553553            /* host drive? */
    554             if (!RTStrNICmp(pszMedium, "host:", 5))
     554            if (!RTStrNICmp(pszMedium, RT_STR_TUPLE("host:")))
    555555            {
    556556                ComPtr<IHost> host;
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