You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2022/04/11 21:38:49 UTC

[trafficserver] branch 9.2.x updated: include for access to C-string operations (#8786)

This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch 9.2.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/9.2.x by this push:
     new 047fb7643 include <cstring> for access to C-string operations (#8786)
047fb7643 is described below

commit 047fb7643e8cbceca54290b481f0efaf7d8b7e69
Author: Jered Floyd <je...@convivian.com>
AuthorDate: Mon Apr 11 12:46:26 2022 -0400

    include <cstring> for access to C-string operations (#8786)
    
    (cherry picked from commit 02e58e0da979f57c4a2763d31658225d7c460247)
---
 plugins/experimental/icap/icap_plugin.cc                    | 1 +
 plugins/experimental/redo_cache_lookup/redo_cache_lookup.cc | 1 +
 2 files changed, 2 insertions(+)

diff --git a/plugins/experimental/icap/icap_plugin.cc b/plugins/experimental/icap/icap_plugin.cc
index 293bb8fb8..a44812509 100644
--- a/plugins/experimental/icap/icap_plugin.cc
+++ b/plugins/experimental/icap/icap_plugin.cc
@@ -26,6 +26,7 @@
 */
 
 #include <string>
+#include <cstring>
 #include <regex>
 
 #include <netinet/in.h>
diff --git a/plugins/experimental/redo_cache_lookup/redo_cache_lookup.cc b/plugins/experimental/redo_cache_lookup/redo_cache_lookup.cc
index b2943091a..6b6c496c7 100644
--- a/plugins/experimental/redo_cache_lookup/redo_cache_lookup.cc
+++ b/plugins/experimental/redo_cache_lookup/redo_cache_lookup.cc
@@ -23,6 +23,7 @@
 
 #include <iostream>
 #include <regex>
+#include <cstring>
 #include <set>
 #include <sstream>
 #include <getopt.h>