[PATCH] ntdll: Print the assembly versions if no compatible version is found

Maarten Lankhorst m.b.lankhorst at gmail.com
Sun Dec 21 17:07:08 CST 2008


---
 dlls/ntdll/actctx.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/dlls/ntdll/actctx.c b/dlls/ntdll/actctx.c
index f1f9ad7..851d9ab 100644
--- a/dlls/ntdll/actctx.c
+++ b/dlls/ntdll/actctx.c
@@ -1398,7 +1398,11 @@ static BOOL parse_assembly_elem(xmlbuf_t* xmlbuf, struct actctx_loader* acl,
             if (assembly->type == ASSEMBLY_MANIFEST &&
                 memcmp(&assembly->id.version, &expected_ai->version, sizeof(assembly->id.version)))
             {
-                FIXME("wrong version for assembly manifest\n");
+                FIXME("wrong version for assembly manifest: %u.%u.%u.%u / %u.%u.%u.%u\n",
+                    expected_ai->version.major, expected_ai->version.minor,
+                    expected_ai->version.build, expected_ai->version.revision,
+                    assembly->id.version.major, assembly->id.version.minor,
+                    assembly->id.version.build, assembly->id.version.revision);
                 return FALSE;
             }
             else if (assembly->type == ASSEMBLY_SHARED_MANIFEST &&
-- 
1.5.6.5


--------------090605040007020807070208--



More information about the wine-patches mailing list