summaryrefslogtreecommitdiffstatsabout
path: root/src
diff options
context:
space:
mode:
authorNokis Mavrogiannopoulos <nmav@gnutls.org>2009-07-21 18:42:44 (GMT)
committer Nokis Mavrogiannopoulos <nmav@gnutls.org>2009-07-21 18:42:44 (GMT)
commit76cbe022c8c1158615615e54a53be8fb1f07a718 (patch)
tree905ee1386c846f544a223fe32ce22ffeba3d12a6 /src
parent5740f52c1e62d943eb50b4e1b9ae14f824c2dd39 (diff)
removed APR_BUCKET_IS_EOS. Doesn't seem appropriate at this point.
Diffstat (limited to 'src')
-rw-r--r--src/gnutls_io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gnutls_io.c b/src/gnutls_io.c
index e145466..f6da535 100644
--- a/src/gnutls_io.c
+++ b/src/gnutls_io.c
@@ -563,7 +563,7 @@ apr_status_t mgs_filter_output(ap_filter_t * f,
563 } 563 }
564 564
565 apr_brigade_cleanup(ctxt->output_bb); 565 apr_brigade_cleanup(ctxt->output_bb);
566 if (APR_BUCKET_IS_EOS(bucket) && ctxt->session) { 566 if (ctxt->session) {
567 gnutls_deinit(ctxt->session); 567 gnutls_deinit(ctxt->session);
568 ctxt->session = NULL; 568 ctxt->session = NULL;
569 } 569 }