[yast-commit] r67154 - in /branches/SuSE-Code-11-SP2-Branch/iscsi-client: VERSION package/yast2-iscsi-client.changes src/IscsiClientLib.ycp
Author: fehr Date: Thu Jan 12 11:38:48 2012 New Revision: 67154 URL: http://svn.opensuse.org/viewcvs/yast?rev=67154&view=rev Log: - version 2.17.32 - remove portal group from target portal (bnc#738037) Modified: branches/SuSE-Code-11-SP2-Branch/iscsi-client/VERSION branches/SuSE-Code-11-SP2-Branch/iscsi-client/package/yast2-iscsi-client.changes branches/SuSE-Code-11-SP2-Branch/iscsi-client/src/IscsiClientLib.ycp Modified: branches/SuSE-Code-11-SP2-Branch/iscsi-client/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/iscsi-... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/iscsi-client/VERSION (original) +++ branches/SuSE-Code-11-SP2-Branch/iscsi-client/VERSION Thu Jan 12 11:38:48 2012 @@ -1 +1 @@ -2.17.31 +2.17.32 Modified: branches/SuSE-Code-11-SP2-Branch/iscsi-client/package/yast2-iscsi-client.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/iscsi-... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/iscsi-client/package/yast2-iscsi-client.changes (original) +++ branches/SuSE-Code-11-SP2-Branch/iscsi-client/package/yast2-iscsi-client.changes Thu Jan 12 11:38:48 2012 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Jan 12 11:28:17 CET 2012 - fehr@suse.de + +- 2.17.32 +- remove portal group from target portal (bnc#738037) + +------------------------------------------------------------------- Wed Dec 21 14:23:39 CET 2011 - fehr@suse.de - undo change from Fri Nov 25 17:09:26 Modified: branches/SuSE-Code-11-SP2-Branch/iscsi-client/src/IscsiClientLib.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/iscsi-... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/iscsi-client/src/IscsiClientLib.ycp (original) +++ branches/SuSE-Code-11-SP2-Branch/iscsi-client/src/IscsiClientLib.ycp Thu Jan 12 11:38:48 2012 @@ -264,6 +264,9 @@ portal = splitstring(row, " ")[2]:""; else if( search(row,"Persistent Portal:")==nil ) portal = splitstring(row, " ")[1]:""; + integer pos = search(portal,","); + if( pos != nil ) + portal = substring( portal, 0, pos ); } else if( search(row,"Iface Name:")!=nil ) { -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
fehr@svn2.opensuse.org