summaryrefslogtreecommitdiffstatsabout
path: root/src
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2009-07-21 18:42:44 (GMT)
committer Nokis Mavrogiannopoulos <nmav@gnutls.org>2009-07-21 18:42:44 (GMT)
commitdaf3dc9b09b01240ed8baa607f72f4ec26d6e91f (patch)
tree905ee1386c846f544a223fe32ce22ffeba3d12a6 /src
parent1d48b0afe250a827ba32b3ecfdc8c08032651863 (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 }