Changeset 40023 in vbox for trunk/src/VBox/Frontends/VBoxSDL
- Timestamp:
- Feb 7, 2012 9:44:31 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76146
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r39725 r40023 818 818 char *cdromFile = NULL; 819 819 char *fdaFile = NULL; 820 const char *p ortVRDP = NULL;820 const char *pszPortVRDP = NULL; 821 821 bool fDiscardState = false; 822 822 #ifdef VBOX_SECURELABEL … … 1163 1163 { 1164 1164 // start with the standard VRDP port 1165 p ortVRDP = "0";1165 pszPortVRDP = "0"; 1166 1166 1167 1167 // is there another argument … … 1169 1169 { 1170 1170 curArg++; 1171 p ortVRDP = argv[curArg];1172 LogFlow(("Using non standard VRDP port %s\n", p ortVRDP));1171 pszPortVRDP = argv[curArg]; 1172 LogFlow(("Using non standard VRDP port %s\n", pszPortVRDP)); 1173 1173 } 1174 1174 } … … 1912 1912 } 1913 1913 1914 if (p ortVRDP)1914 if (pszPortVRDP) 1915 1915 { 1916 1916 rc = gpMachine->COMGETTER(VRDEServer)(gpVRDEServer.asOutParam()); … … 1919 1919 { 1920 1920 // has a non standard VRDP port been requested? 1921 if ( portVRDP > 0)1922 { 1923 rc = gpVRDEServer->SetVRDEProperty(Bstr("TCP/Ports").raw(), Bstr(p ortVRDP).raw());1921 if (strcmp(pszPortVRDP, "0")) 1922 { 1923 rc = gpVRDEServer->SetVRDEProperty(Bstr("TCP/Ports").raw(), Bstr(pszPortVRDP).raw()); 1924 1924 if (rc != S_OK) 1925 1925 {
Note:
See TracChangeset
for help on using the changeset viewer.