You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2019/04/08 03:00:55 UTC

[trafficserver] branch master updated: Fix mysql-remap compilation error

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

masaori 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 334d6c7  Fix mysql-remap compilation error
334d6c7 is described below

commit 334d6c736c31fb132db8bc30350942c600b53ff3
Author: Valentin Gutierrez <vg...@wikimedia.org>
AuthorDate: Wed Apr 3 10:07:54 2019 +0200

    Fix mysql-remap compilation error
    
    It looks like d77cd73166c1b27cde61ffb3c8a1545c437fad83 messed with the
    fix applied in 6e35780e43d7313d18b7ee260e3e0c239d917104
---
 plugins/experimental/mysql_remap/lib/iniparser.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/plugins/experimental/mysql_remap/lib/iniparser.h b/plugins/experimental/mysql_remap/lib/iniparser.h
index 546a41f..ca415be 100644
--- a/plugins/experimental/mysql_remap/lib/iniparser.h
+++ b/plugins/experimental/mysql_remap/lib/iniparser.h
@@ -42,9 +42,9 @@
                                                                 Includes
  ---------------------------------------------------------------------------*/
 
-#include <cstdio>
-#include <cstdlib>
-#include <cstring>
+#include <stdio.h>  // NOLINT(modernize-deprecated-headers)
+#include <stdlib.h> // NOLINT(modernize-deprecated-headers)
+#include <string.h> // NOLINT(modernize-deprecated-headers)
 
 /*
  * The following #include is necessary on many Unixes but not Linux.