"Philip M. Gollucci" <[EMAIL PROTECTED]> writes:

> module/apache/command.c
> ===================================================================
> --- module/apache/command.c     (revision 210049)
> +++ module/apache/command.c     (working copy)
> @@ -18,6 +18,7 @@
>
>   #include "apreq_util.h"
>   #include "apreq_module_apache.h"
> +#include "apreq_version.h"
>
>   #include "httpd.h"
>   #include "http_log.h"
> @@ -152,6 +153,7 @@
>       apr_initialize();
>       apr_pool_create(&p, NULL);
>       apreq_initialize(p);
> +    ap_add_version_component(p, apr_psprintf(p, "mod_apreq/%s",
> APREQ_VERSION_STRING));

Line wrap.

>       ap_register_cleanup(sp, p, apreq_cleanup, apreq_cleanup);
>   }
>
> Index: module/apache2/filter.c
> ===================================================================
> --- module/apache2/filter.c     (revision 210049)
> +++ module/apache2/filter.c     (working copy)
> @@ -29,6 +29,7 @@
>   #include "apreq_private_apache2.h"
>   #include "apreq_error.h"
>   #include "apreq_util.h"
> +#include "apreq_version.h"
>
>   static void *apreq_create_dir_config(apr_pool_t *p, char *d)
>   {
> @@ -423,6 +424,8 @@
>   {
>       apr_status_t status;
>
> +    ap_add_version_component(p, apr_psprintf(p, "mod_apreq/%s",
> APREQ_VERSION_STRING));

Line wrap.

-- 
Joe Schaefer

Reply via email to