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 23ac81f  Fix compilation error - missing '&' operator (#7093)
23ac81f is described below

commit 23ac81fcb4f86a605a9dc7036cc74747760a3836
Author: Randy DuCharme <[email protected]>
AuthorDate: Fri Aug 7 10:12:53 2020 -0500

    Fix compilation error - missing '&' operator (#7093)
---
 plugins/experimental/maxmind_acl/mmdb.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/experimental/maxmind_acl/mmdb.h 
b/plugins/experimental/maxmind_acl/mmdb.h
index 93a1cac..63fd852 100644
--- a/plugins/experimental/maxmind_acl/mmdb.h
+++ b/plugins/experimental/maxmind_acl/mmdb.h
@@ -103,6 +103,6 @@ protected:
   bool loaddeny(const YAML::Node &denyNode);
   void loadhtml(const YAML::Node &htmlNode);
   bool eval_country(MMDB_entry_data_s *entry_data, const char *path, int 
path_len);
-  void parseregex(const YAML::Node regex, bool allow);
+  void parseregex(const YAML::Node &regex, bool allow);
   ipstate eval_ip(const sockaddr *sock) const;
 };

Reply via email to