~ubuntu-branches/ubuntu/intrepid/tomcat5.5/intrepid

« back to all changes in this revision

Viewing changes to connectors/jk/native/iis/jk_isapi_plugin.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-09-27 11:19:17 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060927111917-wov6fmkz3x6rsl68
Tags: 5.5.17-1ubuntu1
(Build-) depend on libmx4j-java (>= 3.0).

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 * Author:      Larry Isaacs <larryi@apache.org>                           *
21
21
 * Author:      Ignacio J. Ortega <nacho@apache.org>                       *
22
22
 * Author:      Mladen Turk <mturk@apache.org>                             *
23
 
 * Version:     $Revision: 301064 $                                          *
 
23
 * Version:     $Revision: 375077 $                                          *
24
24
 ***************************************************************************/
25
25
 
26
26
// This define is needed to include wincrypt,h, needed to get client certificates
935
935
                    if (query && strlen(query) > 0)
936
936
                        strcpy(ld->query, query);
937
937
                    pfc->pFilterContext = ld;
 
938
                } else {
 
939
                    isapi_log_data_t *ld = (isapi_log_data_t *)pfc->pFilterContext;
 
940
                    memset(ld, 0, sizeof(isapi_log_data_t));
 
941
                    strcpy(ld->uri, forwardURI);
 
942
                    if (query && strlen(query) > 0)
 
943
                        strcpy(ld->query, query);
938
944
                }
939
945
            }
940
946
            else {