Changeset 47112 in vbox for trunk/src/VBox
- Timestamp:
- Jul 12, 2013 10:37:42 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87204
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/DHCPServerImpl.cpp
r47018 r47112 413 413 414 414 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 415 HRESULT hrc ;415 HRESULT hrc = S_OK; 416 416 417 417 ComPtr<IMachine> machine; … … 459 459 STDMETHODIMP DHCPServer::COMGETTER(EventSource)(IEventSource **aEventSource) 460 460 { 461 NOREF(aEventSource); 461 462 ReturnComNotImplemented(); 462 463 } -
trunk/src/VBox/Main/src-server/HostImpl.cpp
r47022 r47112 232 232 static inline char *getResolvConfPath() 233 233 { 234 int rc = VINF_SUCCESS;235 234 if (!g_aszResolvConf[0]) return g_aszResolvConf; 236 235 # ifdef RT_OS_OS2 … … 243 242 { 244 243 RTStrmPrintf(g_aszResolvConf, MAX_PATH, "%/RESOLV2", RTEnvGet("ETC")); 245 rc = RTFileExists(g_aszResolvConf);244 int rc = RTFileExists(g_aszResolvConf); 246 245 if (RT_SUCCESS(rc)) 247 246 return g_aszResolvConf; … … 843 842 STDMETHODIMP Host::COMGETTER(NameServers)(ComSafeArrayOut(BSTR, aNameServers)) 844 843 { 844 NOREF(aNameServers); 845 #ifndef RT_OS_WINDOWS 846 NOREF(aNameServersSize); 847 #endif 845 848 return E_NOTIMPL; 846 849 } … … 852 855 STDMETHODIMP Host::COMGETTER(DomainName)(BSTR *aDomainName) 853 856 { 857 NOREF(aDomainName); 854 858 return E_NOTIMPL; 855 859 } … … 861 865 STDMETHODIMP Host::COMGETTER(SearchStrings)(ComSafeArrayOut(BSTR, aSearchStrings)) 862 866 { 867 NOREF(aSearchStrings); 868 #ifndef RT_OS_WINDOWS 869 NOREF(aSearchStringsSize); 870 #endif 863 871 return E_NOTIMPL; 864 872 }
Note:
See TracChangeset
for help on using the changeset viewer.