This is an automated email from the ASF dual-hosted git repository.
bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new af94f0c Fixed syntax issue with clang
af94f0c is described below
commit af94f0cde9cbdd9f585bb40d2cb97760eb244f61
Author: Bryan Call <[email protected]>
AuthorDate: Wed May 8 13:45:44 2019 -0700
Fixed syntax issue with clang
---
plugins/experimental/ssl_session_reuse/src/ats_ssl_plugin.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/experimental/ssl_session_reuse/src/ats_ssl_plugin.cc
b/plugins/experimental/ssl_session_reuse/src/ats_ssl_plugin.cc
index 1a8e171..81be94a 100644
--- a/plugins/experimental/ssl_session_reuse/src/ats_ssl_plugin.cc
+++ b/plugins/experimental/ssl_session_reuse/src/ats_ssl_plugin.cc
@@ -36,7 +36,7 @@ int SSL_session_callback(TSCont contp, TSEvent event, void
*edata);
static int
shutdown_handler(TSCont contp, TSEvent event, void *edata)
{
- if ((event == TS_EVENT_LIFECYCLE_SHUTDOWN)) {
+ if (event == TS_EVENT_LIFECYCLE_SHUTDOWN) {
plugin_threads.terminate();
}
return 0;