ICU-5092 Fix for i5/OS

X-SVN-Rev: 19765
This commit is contained in:
George Rhoten 2006-06-26 23:54:39 +00:00
parent 88067a2bd1
commit 49e8d0adc6

View file

@ -284,12 +284,13 @@ void IdnaConfTest::Test(void){
UnicodeString value;
// skip everything before the first "=====" and "=====" itself
for (;;){
ReadOneLine(s);
if (s.compare(C_TAG, -1) == 0){ //"====="
do {
if (!ReadOneLine(s)) {
errln("End of file prematurely found");
break;
}
}
while (s.compare(C_TAG, -1) != 0); //"====="
while(ReadOneLine(s)){
s.trim();