- Timestamp:
- Jun 15, 2007 9:03:24 AM (18 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r3110 r3117 217 217 if (!fShown) 218 218 { 219 RTPrintf("VirtualBox " 220 #ifdef VBOX_OSE 221 "OSE " 222 #endif 223 "Command Line Management Interface Version %s\n" 219 RTPrintf("VirtualBox Command Line Management Interface Version " 220 VBOX_VERSION_STRING "\n" 224 221 "(C) 2005-2007 innotek GmbH\n" 225 222 "All rights reserved.\n" 226 "\n", 227 VBOX_VERSION_STRING); 223 "\n"); 228 224 fShown = true; 229 225 } -
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r3110 r3117 865 865 866 866 LogFlow(("SDL GUI started\n")); 867 RTPrintf("VirtualBox " 868 #ifdef VBOX_OSE 869 "OSE " 870 #endif 871 "SDL GUI %s built %s %s\n", 867 RTPrintf("VirtualBox SDL GUI %s built %s %s\n", 872 868 VBOX_VERSION_STRING, __DATE__, __TIME__); 873 869 -
trunk/src/VBox/Main/linux/server.cpp
r3094 r3117 1140 1140 1141 1141 iSize = snprintf (szBuf, sizeof(szBuf), 1142 "innotek VirtualBox " 1143 #ifdef VBOX_OSE 1144 "OSE " 1145 #endif 1146 "XPCOM Server Version %s", 1142 "innotek VirtualBox XPCOM Server Version " 1147 1143 VBOX_VERSION_STRING); 1148 1144 for (int i=iSize; i>0; i--) … … 1176 1172 { 1177 1173 char szBuf[32]; 1178 c har *lf = "\n";1174 const char *lf = "\n"; 1179 1175 RTFileOpen(&pidFile, pszPidFile, RTFILE_O_WRITE | RTFILE_O_CREATE_REPLACE); 1180 1176 RTStrFormatNumber(szBuf, getpid(), 10, 0, 0, 0);
Note:
See TracChangeset
for help on using the changeset viewer.