[yast-commit] r67506 - in /trunk/s390/src/modules: DASDController.ycp ZFCPController.ycp
Author: aschnell Date: Wed Feb 22 10:25:25 2012 New Revision: 67506 URL: http://svn.opensuse.org/viewcvs/yast?rev=67506&view=rev Log: - added tolower in FormatChannel Modified: trunk/s390/src/modules/DASDController.ycp trunk/s390/src/modules/ZFCPController.ycp Modified: trunk/s390/src/modules/DASDController.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/s390/src/modules/DASDController.ycp?rev=67506&r1=67505&r2=67506&view=diff ============================================================================== --- trunk/s390/src/modules/DASDController.ycp (original) +++ trunk/s390/src/modules/DASDController.ycp Wed Feb 22 10:25:25 2012 @@ -118,7 +118,7 @@ if (!IsValidChannel(channel)) return channel; - list<string> strs = splitstring(channel, "."); + list<string> strs = splitstring(tolower(channel), "."); strs[2] = String::PadZeros(strs[2]:"", 4); return mergestring(strs, "."); } Modified: trunk/s390/src/modules/ZFCPController.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/s390/src/modules/ZFCPController.ycp?rev=67506&r1=67505&r2=67506&view=diff ============================================================================== --- trunk/s390/src/modules/ZFCPController.ycp (original) +++ trunk/s390/src/modules/ZFCPController.ycp Wed Feb 22 10:25:25 2012 @@ -104,7 +104,7 @@ if (!IsValidChannel(channel)) return channel; - list<string> strs = splitstring(channel, "."); + list<string> strs = splitstring(tolower(channel), "."); strs[2] = String::PadZeros(strs[2]:"", 4); return mergestring(strs, "."); } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
aschnell@svn2.opensuse.org