diff options
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/common/plugins.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 7ae626efe..479034a4f 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -7,6 +7,7 @@ Date Added - Fixed usage of 'long long' in strtoull preventing VC6 projects from compiling (bugreport:4059, follow up to r14245). - Made strtoull default to base 10 and actually process base 8, to match the normal behavior of this function (bugreport:4059, follow up to r14245). - Fixed functions in db.c not being returned as pointer, causing warnings on VC6. + * Fixed plug-in version getting checked against itself and a wrong operator being used for the check (bugreport:3952, since r9631). [Ai4rei] 2010/11/16 * Added a missing argument to a warning containing a format specifier. [Paradox924X] 2010/11/15 diff --git a/src/common/plugins.c b/src/common/plugins.c index c6c362de5..2d81548a1 100644 --- a/src/common/plugins.c +++ b/src/common/plugins.c @@ -160,8 +160,8 @@ static int plugin_iscompatible(char* version) if( version == NULL ) return 0; sscanf(version, "%d.%d", &req_major, &req_minor); - sscanf(version, "%d.%d", &major, &minor); - return ( req_major == major || req_minor <= minor ); + sscanf(PLUGIN_VERSION, "%d.%d", &major, &minor); + return ( req_major == major && req_minor <= minor ); } Plugin* plugin_open(const char* filename) |