You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cli-dev@httpd.apache.org by "William A. Rowe, Jr." <wr...@rowe-clan.net> on 2004/10/07 19:14:12 UTC

svn commit: rev 53986 - incubator/httpd/cli/trunk/mod_aspdotnet/mod

>Author: wrowe
>Date: Thu Oct  7 08:09:00 2004
>New Revision: 53986
>
>Modified:
>   incubator/httpd/cli/trunk/mod_aspdotnet/mod/mod_aspdotnet.cpp
>Log:
>
>  Fix two nits, a filename test that was unnecessary, and a public key
>  token that changed when creating new keys for the project dev flavor.
>
>Submitted by: Yussef Alkhamrichi <yalkhamrichi hotmail.com>
>
>
>Modified: incubator/httpd/cli/trunk/mod_aspdotnet/mod/mod_aspdotnet.cpp
>==============================================================================
>--- incubator/httpd/cli/trunk/mod_aspdotnet/mod/mod_aspdotnet.cpp       (original)
>+++ incubator/httpd/cli/trunk/mod_aspdotnet/mod/mod_aspdotnet.cpp       Thu Oct  7 08:09:00 2004
>@@ -244,7 +244,7 @@
>     }
> 
>     wchar_t *repl = wcsrchr(wAspNetPath, L'\\');
>-    if (!repl || wcscmp(repl, L"\\apache.exe")) {
>+    if (!repl) {
>         ap_log_error(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, 0, NULL,
>                      "mod_aspdotnet: Unable to determine apache.exe path!");
>         _com_raise_error(E_FAIL);
>@@ -329,7 +329,7 @@
>     hr = pDefaultDomain->CreateInstance(_bstr_t("Apache.Web, "
>                                             "Version=" APACHE_WEB_VERSION ", "
>                                            "Culture=neutral, "
>-                                            "PublicKeyToken=06dcc24729498c72"),
>+                                            "PublicKeyToken=9b9b842f49b86351"),
>                                         _bstr_t(L"Apache.Web.HostFactory"),
>                                         &pObjHandle);
>     if (FAILED(hr)) {