From fc6a0e4d06efe0320a8ad53331633e7f9e869f53 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Sat, 15 Feb 2014 17:33:00 -0500 Subject: [PATCH] Fix warnings --- src/mod_auth_gssapi.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/mod_auth_gssapi.c b/src/mod_auth_gssapi.c index 9296135..c8c56ce 100644 --- a/src/mod_auth_gssapi.c +++ b/src/mod_auth_gssapi.c @@ -107,7 +107,10 @@ static int mag_auth(request_rec *req) cfg = ap_get_module_config(req->per_dir_config, &mag_module); - /* FIXME: Checks for ssl only configuration */ + if (cfg->ssl_only) { + ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, 0, req, + "FIXME: check for ssl!"); + } auth_header = apr_table_get(req->headers_in, "Authorization"); if (!auth_header) goto done; @@ -157,7 +160,7 @@ static int mag_auth(request_rec *req) /* FIXME: save creds */ - req->ap_auth_type = "Negotiate"; + req->ap_auth_type = apr_pstrdup(req->pool, "Negotiate"); req->user = apr_pstrndup(req->pool, name.value, name.length); ret = OK; -- 2.1.4