Paul Chitescu : ntdll: Print desired version of missing dependent assemblies.

Alexandre Julliard julliard at winehq.org
Fri Apr 3 10:28:40 CDT 2009


Module: wine
Branch: master
Commit: de66f257d68d73d41d9a7dedf42bb822721730f5
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=de66f257d68d73d41d9a7dedf42bb822721730f5

Author: Paul Chitescu <paulc at voip.null.ro>
Date:   Thu Apr  2 21:00:07 2009 +0300

ntdll: Print desired version of missing dependent assemblies.

---

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

diff --git a/dlls/ntdll/actctx.c b/dlls/ntdll/actctx.c
index 3744904..a1b1e3b 100644
--- a/dlls/ntdll/actctx.c
+++ b/dlls/ntdll/actctx.c
@@ -2022,7 +2022,9 @@ static NTSTATUS parse_depend_manifests(struct actctx_loader* acl)
         {
             if (!acl->dependencies[i].optional)
             {
-                FIXME( "Could not find dependent assembly %s\n", debugstr_w(acl->dependencies[i].name) );
+                FIXME( "Could not find dependent assembly %s (%s)\n",
+                    debugstr_w(acl->dependencies[i].name),
+                    debugstr_version(&acl->dependencies[i].version) );
                 status = STATUS_SXS_CANT_GEN_ACTCTX;
                 break;
             }




More information about the wine-cvs mailing list