[yast-commit] r59870 - in /trunk/network: VERSION package/yast2-network.changes src/modules/ISDN.ycp
Author: mzugec Date: Tue Dec 1 11:26:00 2009 New Revision: 59870 URL: http://svn.opensuse.org/viewcvs/yast?rev=59870&view=rev Log: ISDN: fixed creating configuration with incorrect name (bnc#534504) Modified: trunk/network/VERSION trunk/network/package/yast2-network.changes trunk/network/src/modules/ISDN.ycp Modified: trunk/network/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/network/VERSION?rev=59870&r1=59869&r2=59870&view=diff ============================================================================== --- trunk/network/VERSION (original) +++ trunk/network/VERSION Tue Dec 1 11:26:00 2009 @@ -1 +1 @@ -2.19.3 +2.19.4 Modified: trunk/network/package/yast2-network.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/network/package/yast2-network.changes?rev=59870&r1=59869&r2=59870&view=diff ============================================================================== --- trunk/network/package/yast2-network.changes (original) +++ trunk/network/package/yast2-network.changes Tue Dec 1 11:26:00 2009 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Tue Dec 1 11:24:25 CET 2009 - mzugec@suse.de + +- ISDN: fixed creating configuration with incorrect name (bnc#534504) +- 2.19.4 + +------------------------------------------------------------------- Fri Nov 27 13:20:10 CET 2009 - mzugec@suse.cz - fixed prefixlen validation Modified: trunk/network/src/modules/ISDN.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/network/src/modules/ISDN.ycp?rev=59870&r1=59869&r2=59870&view=diff ============================================================================== --- trunk/network/src/modules/ISDN.ycp (original) +++ trunk/network/src/modules/ISDN.ycp Tue Dec 1 11:26: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