[yast-commit] r38268 - in /trunk/network/src: installation/inst_netprobe.ycp modules/Lan.ycp
Author: mzugec Date: Mon Jun 4 15:32:04 2007 New Revision: 38268 URL: http://svn.opensuse.org/viewcvs/yast?rev=38268&view=rev Log: fix for build Modified: trunk/network/src/installation/inst_netprobe.ycp trunk/network/src/modules/Lan.ycp Modified: trunk/network/src/installation/inst_netprobe.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/network/src/installation/inst_netprobe.ycp?rev=38268&r1=38267&r2=38268&view=diff ============================================================================== --- trunk/network/src/installation/inst_netprobe.ycp (original) +++ trunk/network/src/installation/inst_netprobe.ycp Mon Jun 4 15:32:04 2007 @@ -11,13 +11,13 @@ textdomain "network"; -import "Detection"; +import "NetHwDetection"; y2milestone("----------------------------------------"); y2milestone("Lan netprobe module started"); y2milestone("Args: %1", WFM::Args()); -if(!Detection::running) Detection::Start(); +if(!NetHwDetection::running) NetHwDetection::Start(); y2milestone("Lan netprobe module finished"); y2milestone("----------------------------------------"); Modified: trunk/network/src/modules/Lan.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/network/src/modules/Lan.ycp?rev=38268&r1=38267&r2=38268&view=diff ============================================================================== --- trunk/network/src/modules/Lan.ycp (original) +++ trunk/network/src/modules/Lan.ycp Mon Jun 4 15:32:04 2007 @@ -1868,7 +1868,7 @@ { y2milestone ("hostname from dns"); // try to get hostname from the network - string hnent = Detection::ResolveIP(ipaddr); + string hnent = NetHwDetection::ResolveIP(ipaddr); //last resort - generate random hostname (#165269) if (hnent == "") -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
mzugec@svn.opensuse.org