Missing case where path info is empty.
authorcantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Fri, 14 Sep 2007 04:26:50 +0000 (04:26 +0000)
committercantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Fri, 14 Sep 2007 04:26:50 +0000 (04:26 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@2467 cb58f699-b61c-0410-a6fe-9272a202ed29

isapi_shib/isapi_shib.cpp

index afecb86..6b66058 100644 (file)
@@ -702,6 +702,9 @@ public:
             m_uri += lpECB->lpszPathInfo;
         }
     }
+    else {
+        m_uri = url;
+    }
     
     // For consistency with Apache, let's add the query string.
     if (lpECB->lpszQueryString && *(lpECB->lpszQueryString)) {