diff options
author | Juergen Schmidt <jsc@openoffice.org> | 2001-12-04 15:50:17 +0000 |
---|---|---|
committer | Juergen Schmidt <jsc@openoffice.org> | 2001-12-04 15:50:17 +0000 |
commit | 82cb49b961b266c7e0786041f474eec73d7c4518 (patch) | |
tree | 6fa678bb6a23ed0ce7febed0417f95d58769551e /registry | |
parent | 823876b3915483dbc9cd78ba4cdf4e9c62b7288b (diff) |
#94649# compare valueType1 with valueType2
Diffstat (limited to 'registry')
-rw-r--r-- | registry/tools/regcompare.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/registry/tools/regcompare.cxx b/registry/tools/regcompare.cxx index 31f105db624c..9073bb2387b5 100644 --- a/registry/tools/regcompare.cxx +++ b/registry/tools/regcompare.cxx @@ -2,9 +2,9 @@ * * $RCSfile: regcompare.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: jsc $ $Date: 2001-10-18 14:29:50 $ + * last change: $Author: jsc $ $Date: 2001-12-04 16:50:17 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1516,7 +1516,7 @@ static sal_uInt32 checkValueDifference(RegistryKey& key1, RegValueType valueType bEqual = (rtl_compareMemory(value1, value2, size1) == 0 ); - if ( !bEqual && valueType1 == RG_VALUETYPE_BINARY && valueType1 == RG_VALUETYPE_BINARY ) + if ( !bEqual && valueType1 == RG_VALUETYPE_BINARY && valueType2 == RG_VALUETYPE_BINARY ) { RegistryTypeReader reader1(getRegistryTypeReaderLoader(), (sal_uInt8*)value1, size1, sal_False); |