Browse Source

Rename Common to common.inc.c to indicate that this is an included C file not a primary build C file.

Adam Ierymenko 9 years ago
parent
commit
4acb3d81f3
3 changed files with 3 additions and 2 deletions
  1. 2 1
      netcon/Intercept.c
  2. 1 1
      netcon/NetconEthernetTap.cpp
  3. 0 0
      netcon/common.inc.c

+ 2 - 1
netcon/Intercept.c

@@ -50,7 +50,8 @@
 #include <arpa/inet.h>
 
 #include "Intercept.h"
-#include "Common.c"
+
+#include "common.inc.c"
 
 #ifdef CHECKS
   #include <sys/resource.h>

+ 1 - 1
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

+ 0 - 0
netcon/Common.c → netcon/common.inc.c