aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/mhd_send.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/mhd_send.c')
-rw-r--r--src/microhttpd/mhd_send.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index d32533a8..18996c00 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -218,9 +218,9 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
218 /* for TLS*/ 218 /* for TLS*/
219 219
220 if (0 != (connection->daemon->options & MHD_USE_TLS)) 220 if (0 != (connection->daemon->options & MHD_USE_TLS))
221 /* old TLS code here */; 221 send_tls_adapter(connection, buffer, buffer_size);
222 else 222 else
223 no-TLS; 223 ;
224 224
225 // shouldn't we return 0 or -1? Why re-use the _ERR_ functions? 225 // shouldn't we return 0 or -1? Why re-use the _ERR_ functions?
226 // error handling from send_param_adapter(): 226 // error handling from send_param_adapter():