gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [libmicrohttpd] 06/08: convert tls_closed to 'bool'


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] 06/08: convert tls_closed to 'bool'
Date: Wed, 15 Feb 2017 13:37:20 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository libmicrohttpd.

commit d170754b7d5365bf3e2f7277dd6a6ab065249aa2
Author: Christian Grothoff <address@hidden>
AuthorDate: Wed Feb 15 13:32:39 2017 +0100

    convert tls_closed to 'bool'
---
 src/microhttpd/connection_https.c | 4 ++--
 src/microhttpd/internal.h         | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/microhttpd/connection_https.c 
b/src/microhttpd/connection_https.c
index f1f1f90c..dea9956d 100644
--- a/src/microhttpd/connection_https.c
+++ b/src/microhttpd/connection_https.c
@@ -191,10 +191,10 @@ MHD_set_https_callbacks (struct MHD_Connection 
*connection)
 int
 MHD_tls_connection_shutdown (struct MHD_Connection *connection)
 {
-  if (MHD_NO != connection->tls_closed)
+  if (connection->tls_closed)
     return MHD_NO;
 
-  connection->tls_closed = MHD_YES;
+  connection->tls_closed = true;
   return (GNUTLS_E_SUCCESS == gnutls_bye(connection->tls_session, 
GNUTLS_SHUT_WR)) ?
       MHD_YES : MHD_NO;
 }
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index c47ed06d..f2e61d51 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -937,7 +937,7 @@ struct MHD_Connection
   /**
    * TLS layer was shut down?
    */
-  int tls_closed;
+  bool tls_closed;
 #endif /* HTTPS_SUPPORT */
 
   /**

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]