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 2015/07/10 06:55:31 UTC

trafficserver git commit: TS-3739 Fix build error for a couple of linux specific plugins

Repository: trafficserver
Updated Branches:
  refs/heads/master 342f9e2c4 -> dffd7f892


TS-3739 Fix build error for a couple of linux specific plugins


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/dffd7f89
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/dffd7f89
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/dffd7f89

Branch: refs/heads/master
Commit: dffd7f892219a7a649b597f3d0b50825734b75ed
Parents: 342f9e2
Author: Leif Hedstrom <zw...@apache.org>
Authored: Thu Jul 9 22:55:26 2015 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Thu Jul 9 22:55:26 2015 -0600

----------------------------------------------------------------------
 plugins/experimental/healthchecks/healthchecks.c | 2 +-
 plugins/experimental/remap_stats/remap_stats.c   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/dffd7f89/plugins/experimental/healthchecks/healthchecks.c
----------------------------------------------------------------------
diff --git a/plugins/experimental/healthchecks/healthchecks.c b/plugins/experimental/healthchecks/healthchecks.c
index f4576b1..38437a9 100644
--- a/plugins/experimental/healthchecks/healthchecks.c
+++ b/plugins/experimental/healthchecks/healthchecks.c
@@ -33,7 +33,7 @@ limitations under the License.
 #include <libgen.h>
 
 #include "ts/ts.h"
-#include "ink_defs.h"
+#include "ts/ink_defs.h"
 
 static const char PLUGIN_NAME[] = "healthchecks";
 static const char SEPARATORS[] = " \t\n";

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/dffd7f89/plugins/experimental/remap_stats/remap_stats.c
----------------------------------------------------------------------
diff --git a/plugins/experimental/remap_stats/remap_stats.c b/plugins/experimental/remap_stats/remap_stats.c
index df0f485..74e1750 100644
--- a/plugins/experimental/remap_stats/remap_stats.c
+++ b/plugins/experimental/remap_stats/remap_stats.c
@@ -19,8 +19,8 @@
   limitations under the License.
  */
 
-#include "ink_config.h"
-#include "ink_defs.h"
+#include "ts/ink_config.h"
+#include "ts/ink_defs.h"
 
 #include "ts/ts.h"
 #include <stdint.h>