VirtualBox

Ignore:
Timestamp:
Apr 4, 2010 2:16:32 PM (15 years ago)
Author:
vboxsync
Message:

*: scm cleans up whitespace and adds a new line at the end of ApplianceimplPrivate.h.

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

Legend:

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

    r27945 r27976  
    112112                usageOK = false;
    113113            else
    114             {               
     114            {
    115115                char **papszArg;
    116116                int cArgs;
     
    119119                if (RT_SUCCESS(rc))
    120120                {
    121                     for (int a = 0; a < cArgs; a++)                       
     121                    for (int a = 0; a < cArgs; a++)
    122122                        env.push_back(Bstr(papszArg[a]));
    123123
    124124                    RTGetOptArgvFree(papszArg);
    125                 }               
     125                }
    126126                ++i;
    127127            }
     
    168168        else
    169169        {
    170             return errorSyntax(USAGE_GUESTCONTROL, 
     170            return errorSyntax(USAGE_GUESTCONTROL,
    171171                               "Invalid parameter '%s'", Utf8Str(a->argv[i]).raw());
    172172        }
     
    180180        &&  Utf8UserName.isEmpty())
    181181    {
    182         return errorSyntax(USAGE_GUESTCONTROL, 
     182        return errorSyntax(USAGE_GUESTCONTROL,
    183183                           "No user name for password specified!");
    184184    }
     
    199199            Bstr uuid;
    200200            machine->COMGETTER(Id)(uuid.asOutParam());
    201    
     201
    202202            /* open an existing session for VM - so the VM has to be running */
    203203            CHECK_ERROR_BREAK(a->virtualBox, OpenExistingSession(a->session, uuid));
    204    
     204
    205205            /* get the mutable session machine */
    206206            a->session->COMGETTER(Machine)(machine.asOutParam());
    207    
     207
    208208            /* get the associated console */
    209209            ComPtr<IConsole> console;
    210210            CHECK_ERROR_BREAK(a->session, COMGETTER(Console)(console.asOutParam()));
    211    
     211
    212212            ComPtr<IGuest> guest;
    213213            CHECK_ERROR_BREAK(console, COMGETTER(Guest)(guest.asOutParam()));
     
    215215            ComPtr<IProgress> progress;
    216216            ULONG uPID = 0;
    217             CHECK_ERROR_BREAK(guest, ExecuteProgram(Bstr(Utf8Cmd), uFlags, 
    218                                                     Bstr(Utf8Args), ComSafeArrayAsInParam(env), 
     217            CHECK_ERROR_BREAK(guest, ExecuteProgram(Bstr(Utf8Cmd), uFlags,
     218                                                    Bstr(Utf8Args), ComSafeArrayAsInParam(env),
    219219                                                    Bstr(Utf8StdIn), Bstr(Utf8StdOut), Bstr(Utf8StdErr),
    220220                                                    Bstr(Utf8UserName), Bstr(Utf8Password), uTimeoutMS,
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp

    r27925 r27976  
    12731273                char *strTcpSnd;
    12741274                char *strTcpRcv;
    1275                 char *strRaw = RTStrDup(ValueUnion.psz); 
     1275                char *strRaw = RTStrDup(ValueUnion.psz);
    12761276                char *ch = strRaw;
    12771277                strMtu = ch;
     
    13131313                    char *strGuestIp;
    13141314                    char *strGuestPort;
    1315                     char *strRaw = RTStrDup(ValueUnion.psz); 
     1315                    char *strRaw = RTStrDup(ValueUnion.psz);
    13161316                    char *ch = strRaw;
    13171317                    strName = ch;
     
    13231323                    strHostPort = ch;
    13241324                    ITERATE_TO_NEXT_TERM(ch);
    1325                     strGuestIp = ch;               
     1325                    strGuestIp = ch;
    13261326                    ITERATE_TO_NEXT_TERM(ch);
    13271327                    strGuestPort = ch;
     
    13371337                        break;
    13381338                    }
    1339                     CHECK_ERROR(driver, AddRedirect(Bstr(strName), proto, Bstr(strHostIp), 
     1339                    CHECK_ERROR(driver, AddRedirect(Bstr(strName), proto, Bstr(strHostIp),
    13401340                            RTStrToUInt16(strHostPort), Bstr(strGuestIp), RTStrToUInt16(strGuestPort)));
    13411341                }
     
    13521352            }
    13531353            #undef ITERATE_TO_NEXT_TERM
    1354            
     1354
    13551355            case MODIFYVM_NATTFTPPREFIX:
    13561356            {
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