diff options
author | th <th@openoffice.org> | 2001-07-30 16:46:21 +0000 |
---|---|---|
committer | th <th@openoffice.org> | 2001-07-30 16:46:21 +0000 |
commit | c09d887edea8ce6379931bce349d4a96eff98d6b (patch) | |
tree | 88136116e590929e419189d888ce1b05dcf0e8eb /sal/rtl/source/strtmpl.c | |
parent | d355540587db910411f6fbca0dd787d36a55c782 (diff) |
#65293# (HR) - Fix for Prio 0 (Office doesn't start anymore) in compareIgnoreCase
Diffstat (limited to 'sal/rtl/source/strtmpl.c')
-rw-r--r-- | sal/rtl/source/strtmpl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/rtl/source/strtmpl.c b/sal/rtl/source/strtmpl.c index ae2b9b1e1..9cc0f310b 100644 --- a/sal/rtl/source/strtmpl.c +++ b/sal/rtl/source/strtmpl.c @@ -2,9 +2,9 @@ * * $RCSfile: strtmpl.c,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: th $ $Date: 2001-07-27 13:24:10 $ + * last change: $Author: th $ $Date: 2001-07-30 17:46:11 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -217,7 +217,7 @@ sal_Int32 SAL_CALL IMPL_RTL_STRNAME( compareIgnoreAsciiCase )( const IMPL_RTL_ST c2 += 32; nRet = c1-c2; if ( nRet != 0 ) - break; + return nRet; pStr1++; pStr2++; |