Changeset 64167 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Oct 6, 2016 2:44:38 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r62883 r64167 69 69 { 70 70 char *pszCommand; 71 int status; 71 72 if (pszMessage && cRespawn == 0) 72 73 { … … 74 75 if (pszCommand) 75 76 { 76 int rcShutUpGcc = system(pszCommand); RT_NOREF_PV(rcShutUpGcc); 77 status = system(pszCommand); 78 if (WEXITSTATUS(status) != 0) /* Utility or extension not available. */ 79 { 80 pszCommand = RTStrAPrintf2("xmessage -buttons OK:0 -center \"VBoxClient: %s\"", 81 pszMessage); 82 if (pszCommand) 83 { 84 status = system(pszCommand); 85 if (WEXITSTATUS(status) != 0) /* Utility or extension not available. */ 86 { 87 RTPrintf("VBoxClient: %s", pszMessage); 88 } 89 } 90 } 77 91 } 78 92 }
Note:
See TracChangeset
for help on using the changeset viewer.