From 4acb3d81f3657598fbc18461ed5ad4afe24922fe Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Mon, 23 Nov 2015 13:25:46 -0800 Subject: [PATCH] Rename Common to common.inc.c to indicate that this is an included C file not a primary build C file. --- netcon/Intercept.c | 3 ++- netcon/NetconEthernetTap.cpp | 2 +- netcon/{Common.c => common.inc.c} | 0 3 files changed, 3 insertions(+), 2 deletions(-) rename netcon/{Common.c => common.inc.c} (100%) diff --git a/netcon/Intercept.c b/netcon/Intercept.c index 49c41da6c..66dd6a59e 100644 --- a/netcon/Intercept.c +++ b/netcon/Intercept.c @@ -50,7 +50,8 @@ #include #include "Intercept.h" -#include "Common.c" + +#include "common.inc.c" #ifdef CHECKS #include diff --git a/netcon/NetconEthernetTap.cpp b/netcon/NetconEthernetTap.cpp index f75cb50ab..9035c6ef4 100644 --- a/netcon/NetconEthernetTap.cpp +++ b/netcon/NetconEthernetTap.cpp @@ -49,7 +49,7 @@ #include "lwip/ip_frag.h" #include "lwip/tcp.h" -#include "Common.c" +#include "common.inc.c" #define APPLICATION_POLL_FREQ 20 #define ZT_LWIP_TCP_TIMER_INTERVAL 5 diff --git a/netcon/Common.c b/netcon/common.inc.c similarity index 100% rename from netcon/Common.c rename to netcon/common.inc.c