Author: randyk Date: Wed Jan 26 21:07:10 2005 New Revision: 126584 URL: http://svn.apache.org/viewcvs?view=rev&rev=126584 Log: s/.name = NULL/NULL/, for the benefit of VC++ on Win32.
Modified: httpd/apreq/branches/multi-env-unstable/env/c-modules/apreq_access_test/mod_apreq_access_test.c httpd/apreq/branches/multi-env-unstable/env/mod_apreq.c Modified: httpd/apreq/branches/multi-env-unstable/env/c-modules/apreq_access_test/mod_apreq_access_test.c Url: http://svn.apache.org/viewcvs/httpd/apreq/branches/multi-env-unstable/env/c-modules/apreq_access_test/mod_apreq_access_test.c?view=diff&rev=126584&p1=httpd/apreq/branches/multi-env-unstable/env/c-modules/apreq_access_test/mod_apreq_access_test.c&r1=126583&p2=httpd/apreq/branches/multi-env-unstable/env/c-modules/apreq_access_test/mod_apreq_access_test.c&r2=126584 ============================================================================== --- httpd/apreq/branches/multi-env-unstable/env/c-modules/apreq_access_test/mod_apreq_access_test.c (original) +++ httpd/apreq/branches/multi-env-unstable/env/c-modules/apreq_access_test/mod_apreq_access_test.c Wed Jan 26 21:07:10 2005 @@ -53,7 +53,7 @@ static const command_rec access_cmds[] = { AP_INIT_TAKE1("TestAccess", access_config, NULL, OR_LIMIT, "'param'"), - { .name = NULL } + { NULL } }; static void *create_access_config(apr_pool_t *p, char *dummy) Modified: httpd/apreq/branches/multi-env-unstable/env/mod_apreq.c Url: http://svn.apache.org/viewcvs/httpd/apreq/branches/multi-env-unstable/env/mod_apreq.c?view=diff&rev=126584&p1=httpd/apreq/branches/multi-env-unstable/env/mod_apreq.c&r1=126583&p2=httpd/apreq/branches/multi-env-unstable/env/mod_apreq.c&r2=126584 ============================================================================== --- httpd/apreq/branches/multi-env-unstable/env/mod_apreq.c (original) +++ httpd/apreq/branches/multi-env-unstable/env/mod_apreq.c Wed Jan 26 21:07:10 2005 @@ -758,7 +758,7 @@ "Maximum amount of data that will be fed into a parser."), AP_INIT_TAKE1("APREQ_MaxBrigade", apreq_set_max_brigade, NULL, OR_ALL, "Maximum in-memory bytes a brigade may use."), - { .name = NULL } + { NULL } }; /** @} */
