Juan Lang : crypt32: Use correct string for directory names in a CERT_ALT_NAME_ENTRY.

Alexandre Julliard julliard at winehq.org
Mon Nov 17 09:14:07 CST 2008


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

Author: Juan Lang <juan.lang at gmail.com>
Date:   Fri Nov 14 09:01:16 2008 -0800

crypt32: Use correct string for directory names in a CERT_ALT_NAME_ENTRY.

---

 dlls/crypt32/object.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/crypt32/object.c b/dlls/crypt32/object.c
index 2893f6f..6f8d8fc 100644
--- a/dlls/crypt32/object.c
+++ b/dlls/crypt32/object.c
@@ -785,7 +785,7 @@ static BOOL CRYPT_FormatAltNameEntry(DWORD dwFormatStrType, DWORD indentLevel,
         DWORD directoryNameLen = CertNameToStrW(X509_ASN_ENCODING,
          &entry->u.DirectoryName, strType, NULL, 0);
 
-        LoadStringW(hInstance, IDS_ALT_NAME_OTHER_NAME, buf,
+        LoadStringW(hInstance, IDS_ALT_NAME_DIRECTORY_NAME, buf,
          sizeof(buf) / sizeof(buf[0]));
         bytesNeeded += (directoryNameLen - 1) * sizeof(WCHAR);
         ret = TRUE;




More information about the wine-cvs mailing list