[yast-commit] r60008 - in /branches/SuSE-Code-11-Branch/network: VERSION package/yast2-network.changes src/modules/DSL.ycp src/modules/ISDN.ycp
Author: mzugec Date: Wed Dec 9 10:55:00 2009 New Revision: 60008 URL: http://svn.opensuse.org/viewcvs/yast?rev=60008&view=rev Log: ISDN: fixed creating configuration with incorrect name (bnc#534504) Modified: branches/SuSE-Code-11-Branch/network/VERSION branches/SuSE-Code-11-Branch/network/package/yast2-network.changes branches/SuSE-Code-11-Branch/network/src/modules/DSL.ycp branches/SuSE-Code-11-Branch/network/src/modules/ISDN.ycp Modified: branches/SuSE-Code-11-Branch/network/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-Branch/network/VE... ============================================================================== --- branches/SuSE-Code-11-Branch/network/VERSION (original) +++ branches/SuSE-Code-11-Branch/network/VERSION Wed Dec 9 10:55:00 2009 @@ -1 +1 @@ -2.17.78.1 +2.17.78.2 Modified: branches/SuSE-Code-11-Branch/network/package/yast2-network.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-Branch/network/pa... ============================================================================== --- branches/SuSE-Code-11-Branch/network/package/yast2-network.changes (original) +++ branches/SuSE-Code-11-Branch/network/package/yast2-network.changes Wed Dec 9 10:55:00 2009 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Dec 9 10:48:36 CET 2009 - mzugec@suse.de + +- ISDN: fixed creating configuration with incorrect name (bnc#534504) +- 2.17.78.2 + +------------------------------------------------------------------- Mon Nov 9 16:36:18 CET 2009 - mzugec@suse.cz - YaPI: backported NETWORK.pm file Modified: branches/SuSE-Code-11-Branch/network/src/modules/DSL.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-Branch/network/sr... ============================================================================== --- branches/SuSE-Code-11-Branch/network/src/modules/DSL.ycp (original) +++ branches/SuSE-Code-11-Branch/network/src/modules/DSL.ycp Wed Dec 9 10:55:00 2009 @@ -341,7 +341,7 @@ NetworkInterfaces::Edit(dev); devmap = NetworkInterfaces::Current; type = typ; -// device = num; + device = sformat("%1%2", type,num); operation = `edit; } Modified: branches/SuSE-Code-11-Branch/network/src/modules/ISDN.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-Branch/network/sr... ============================================================================== --- branches/SuSE-Code-11-Branch/network/src/modules/ISDN.ycp (original) +++ branches/SuSE-Code-11-Branch/network/src/modules/ISDN.ycp Wed Dec 9 10:55:00 2009 @@ -795,13 +795,14 @@ */ global define boolean AddIf(string proto) ``{ type = "net"; - device = GetFreeDevice(type); + device = sformat("%1%2", type, GetFreeDevice(type)); interface = $[ "PROTOCOL": proto, "USERCONTROL": "yes", ]; interface = set_ifparameters (interface); operation = `addif; + y2milestone("Adding network configuration %1", device); return true; } -- 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