Changeset 38636 in vbox for trunk/src/VBox/NetworkServices/DHCP
- Timestamp:
- Sep 5, 2011 1:49:45 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73843
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/DHCP/VBoxNetDHCP.cpp
r36469 r38636 31 31 #include <iprt/getopt.h> 32 32 #include <iprt/initterm.h> 33 #include <iprt/message.h> 33 34 #include <iprt/param.h> 34 35 #include <iprt/path.h> … … 2038 2039 int main(int argc, char **argv, char **envp) 2039 2040 { 2040 int rc = RTR3Init AndSUPLib();2041 int rc = RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB); 2041 2042 if (RT_FAILURE(rc)) 2042 { 2043 RTStrmPrintf(g_pStdErr, "VBoxNetDHCP: RTR3InitAndSupLib failed, rc=%Rrc\n", rc); 2044 return 1; 2045 } 2043 return RTMsgInitFailure(rc); 2046 2044 2047 2045 return TrustedMain(argc, argv, envp);
Note:
See TracChangeset
for help on using the changeset viewer.