aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/gnutls_hooks.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gnutls_hooks.c b/src/gnutls_hooks.c
index 9ac17a0..82a9a99 100644
--- a/src/gnutls_hooks.c
+++ b/src/gnutls_hooks.c
@@ -750,8 +750,8 @@ int mgs_hook_fixups(request_rec * r)
750 (ctxt->session))); 750 (ctxt->session)));
751 751
752#ifdef ENABLE_SRP 752#ifdef ENABLE_SRP
753 apr_table_setn(env, "SSL_SRP_USER", 753 tmp = gnutls_srp_server_get_username(ctxt->session);
754 gnutls_srp_server_get_username(ctxt->session)); 754 apr_table_setn(env, "SSL_SRP_USER", (tmp!=NULL)?tmp:"");
755#endif 755#endif
756 756
757 if (apr_table_get(env, "SSL_CLIENT_VERIFY") == NULL) 757 if (apr_table_get(env, "SSL_CLIENT_VERIFY") == NULL)
3' alt='Gravatar' /> Nikos Mavrogiannopoulos 2010-06-27 | * Force support of safe renegotiation.Gravatar Nikos Mavrogiannopoulos 2010-06-27 | * bumped versionGravatar Nikos Mavrogiannopoulos 2010-03-24 | * (no commit message)Gravatar Nikos Mavrogiannopoulos 2010-03-24 | * Corrected issue with firefox and long post data (had to do ↵Gravatar Nikos Mavrogiannopoulos 2010-03-15 | | | | | with read function not handling EAGAIN and EINTR correctly). * On connection termination be polite and send a bye (common handling of EOC ↵Gravatar Nikos Mavrogiannopoulos 2009-07-21 | | | | and EOS). * removed APR_BUCKET_IS_EOS. Doesn't seem appropriate at this point.Gravatar Nikos Mavrogiannopoulos 2009-07-21 | * More fixes related to bug #102Gravatar Nikos Mavrogiannopoulos 2009-07-20 | * Applied patch of jmdesp that allows certificate lists by client.Gravatar Nikos Mavrogiannopoulos 2009-07-20 | * only call gnutls_bye on non null gnutls session.Gravatar Nikos Mavrogiannopoulos 2009-07-20 | * Avoid requesting certificate from client when we already have it. Patch by ↵Gravatar Nikos Mavrogiannopoulos 2009-06-30 | | | | AlainKnaff. * Applied patch by AlainKnaff to correctly verify certificates per directory. ↵