Small tweak to exception handler.
authorScott Cantor <cantor.2@osu.edu>
Mon, 2 Oct 2006 20:27:59 +0000 (20:27 +0000)
committerScott Cantor <cantor.2@osu.edu>
Mon, 2 Oct 2006 20:27:59 +0000 (20:27 +0000)
isapi_shib/isapi_shib.cpp

index 37740f3..901c73a 100644 (file)
@@ -537,7 +537,7 @@ extern "C" DWORD WINAPI HttpFilterProc(PHTTP_FILTER_CONTEXT pfc, DWORD notificat
     }
     catch (SAMLException& e) {
         LogEvent(NULL, EVENTLOG_ERROR_TYPE, 2100, NULL, e.what());
-        return WriteClientError(pfc,"Shibboleth Filter caught an exception, check Event Log for details.");
+        return WriteClientError(pfc,"Shibboleth Filter caught an exception, ask administrator to check Event Log for details.");
     }
 #ifndef _DEBUG
     catch(...) {