From: Alexander Bokovoy Date: Thu, 14 Aug 2014 11:50:27 +0000 (+0300) Subject: Announce module name and version in the server signature X-Git-Tag: v1.0.1~2 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mod_auth_gssapi.git;a=commitdiff_plain;h=68e061102c6b1df375dcac618b71140c640bab02 Announce module name and version in the server signature --- diff --git a/src/mod_auth_gssapi.c b/src/mod_auth_gssapi.c index 60eabc8..220ccab 100644 --- a/src/mod_auth_gssapi.c +++ b/src/mod_auth_gssapi.c @@ -24,6 +24,7 @@ #include "mod_auth_gssapi.h" +#define MOD_AUTH_GSSAPI_VERSION PACKAGE_NAME "/" PACKAGE_VERSION module AP_MODULE_DECLARE_DATA auth_gssapi_module; @@ -78,6 +79,7 @@ static int mag_post_config(apr_pool_t *cfgpool, apr_pool_t *log, /* FIXME: create mutex to deal with connections and contexts ? */ mag_is_https = APR_RETRIEVE_OPTIONAL_FN(ssl_is_https); mag_post_config_session(); + ap_add_version_component(cfgpool, MOD_AUTH_GSSAPI_VERSION); return OK; }