Browse Source

Added prefix km_ to locally included header files.

Jan Janak 16 years ago
parent
commit
619951f5cf

+ 2 - 2
modules/db_flatstore/km_flat_con.c

@@ -27,8 +27,8 @@
 #include "../../mem/mem.h"
 #include "../../dprint.h"
 #include "../../ut.h"
-#include "flatstore_mod.h"
-#include "flat_con.h"
+#include "km_flatstore_mod.h"
+#include "km_flat_con.h"
 
 #define FILE_SUFFIX ".log"
 #define FILE_SUFFIX_LEN (sizeof(FILE_SUFFIX) - 1)

+ 1 - 1
modules/db_flatstore/km_flat_con.h

@@ -27,7 +27,7 @@
 
 #include <stdio.h>
 #include <time.h>
-#include "flat_id.h"
+#include "km_flat_id.h"
 
 struct flat_con {
 	struct flat_id* id;    /* Connection identifier */

+ 1 - 1
modules/db_flatstore/km_flat_id.c

@@ -25,7 +25,7 @@
 #include <string.h>
 #include "../../dprint.h"
 #include "../../mem/mem.h"
-#include "flat_id.h"
+#include "km_flat_id.h"
 
 
 

+ 1 - 1
modules/db_flatstore/km_flat_mi.c

@@ -23,7 +23,7 @@
  */
 
 #include "flatstore_mod.h"
-#include "flat_mi.h"
+#include "km_flat_mi.h"
 
 
 struct mi_root*  mi_flat_rotate_cmd(struct mi_root* cmd_tree, void* param)

+ 2 - 2
modules/db_flatstore/km_flat_pool.c

@@ -24,8 +24,8 @@
 
 #include <unistd.h>
 #include "../../dprint.h"
-#include "flat_pool.h"
-#include "flat_id.h"
+#include "km_flat_pool.h"
+#include "km_flat_id.h"
 
 
 /* The head of the pool */

+ 1 - 1
modules/db_flatstore/km_flat_pool.h

@@ -25,7 +25,7 @@
 #ifndef _KM_FLAT_POOL_H
 #define _KM_FLAT_POOL_H
 
-#include "flat_con.h"
+#include "km_flat_con.h"
 
 /*
  * Get a connection from the pool, reuse existing

+ 4 - 4
modules/db_flatstore/km_flatstore.c

@@ -31,10 +31,10 @@
 #include <ctype.h>
 #include "../../mem/mem.h"
 #include "../../dprint.h"
-#include "flat_pool.h"
-#include "flat_con.h"
-#include "flatstore_mod.h"
-#include "flatstore.h"
+#include "km_flat_pool.h"
+#include "km_flat_con.h"
+#include "km_flatstore_mod.h"
+#include "km_flatstore.h"
 
 
 static int parse_flat_url(const str* url, str* path)

+ 3 - 3
modules/db_flatstore/km_flatstore_mod.c

@@ -30,9 +30,9 @@
 #include "../../sr_module.h"
 #include "../../mem/shm_mem.h"
 #include "../../db/db.h"
-#include "flatstore.h"
-#include "flat_mi.h"
-#include "flatstore_mod.h"
+#include "km_flatstore.h"
+#include "km_flat_mi.h"
+#include "km_flatstore_mod.h"
 
 MODULE_VERSION