Changeset 1852 in vbox for trunk/src/VBox
- Timestamp:
- Apr 2, 2007 9:51:47 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20058
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvNAT.cpp
r1719 r1852 466 466 { 467 467 case VERR_NAT_DNS: 468 PDMDRV_SET_ERROR(pDrvIns, rc, N_("Domain Name Server (DNS) for NAT networking could not be determined")); 468 #ifdef __LINUX__ 469 PDMDRV_SET_ERROR(pDrvIns, rc, N_("Domain Name Server (DNS) for NAT networking could not be determined. Please check your /etc/resolv.conf for <b>nameserver</b> entries. Either add one manually (<i>man resolv.conf</i>) or ensure that your host is correctly connected to the Internet")); 470 #else 471 PDMDRV_SET_ERROR(pDrvIns, rc, N_("Domain Name Server (DNS) for NAT networking could not be determined. Make sure that your host is correctly connected to the Internet")); 472 #endif 469 473 break; 470 474 default:
Note:
See TracChangeset
for help on using the changeset viewer.