remove ucx utils.h includes

Mon, 26 May 2025 21:13:11 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Mon, 26 May 2025 21:13:11 +0200
changeset 584
f3ddd6dc8e7b
parent 583
d41c48522eea
child 585
bae488d2b3c2

remove ucx utils.h includes

src/server/config/conf.h file | annotate | diff | comparison | revisions
src/server/config/objconf.c file | annotate | diff | comparison | revisions
src/server/config/serverconfig.c file | annotate | diff | comparison | revisions
src/server/daemon/config.c file | annotate | diff | comparison | revisions
src/server/daemon/ldap_auth.c file | annotate | diff | comparison | revisions
src/server/daemon/log.h file | annotate | diff | comparison | revisions
src/server/daemon/srvctrl.c file | annotate | diff | comparison | revisions
src/server/daemon/webserver.c file | annotate | diff | comparison | revisions
src/server/plugins/postgresql/pgtest.c file | annotate | diff | comparison | revisions
src/server/plugins/postgresql/webdav.c file | annotate | diff | comparison | revisions
src/server/safs/service.c file | annotate | diff | comparison | revisions
src/server/test/testutils.c file | annotate | diff | comparison | revisions
src/server/util/util.c file | annotate | diff | comparison | revisions
src/server/webdav/requestparser.c file | annotate | diff | comparison | revisions
src/server/webdav/xattrbackend.c file | annotate | diff | comparison | revisions
--- a/src/server/config/conf.h	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/config/conf.h	Mon May 26 21:13:11 2025 +0200
@@ -36,7 +36,6 @@
 #include <cx/hash_map.h>
 #include <cx/mempool.h>
 #include <cx/string.h>
-#include <cx/utils.h>
 #include <cx/compare.h>
 
 #include "../util/object.h"
--- a/src/server/config/objconf.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/config/objconf.c	Mon May 26 21:13:11 2025 +0200
@@ -31,7 +31,6 @@
 
 #include <string.h>
 
-#include <cx/utils.h>
 
 /* dev notes:
  *
--- a/src/server/config/serverconfig.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/config/serverconfig.c	Mon May 26 21:13:11 2025 +0200
@@ -38,7 +38,6 @@
 #include <errno.h>
 
 #include <cx/buffer.h>
-#include <cx/utils.h>
 
 ServerConfig* serverconfig_load(const char *file) {
     CxMempool *mp = cxMempoolCreateSimple(512);
--- a/src/server/daemon/config.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/daemon/config.c	Mon May 26 21:13:11 2025 +0200
@@ -38,7 +38,6 @@
 #include <sys/mman.h>
 
 #include <cx/string.h>
-#include <cx/utils.h>
 #include <cx/hash_map.h>
 #include <cx/linked_list.h>
 #include <cx/compare.h>
--- a/src/server/daemon/ldap_auth.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/daemon/ldap_auth.c	Mon May 26 21:13:11 2025 +0200
@@ -35,7 +35,6 @@
 #include <string.h>
 #include <sys/time.h>
 
-#include <cx/utils.h>
 #include <cx/hash_map.h>
 #include <cx/printf.h>
 
--- a/src/server/daemon/log.h	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/daemon/log.h	Mon May 26 21:13:11 2025 +0200
@@ -31,7 +31,7 @@
 
 #include "../public/nsapi.h"
 #include <cx/string.h>
-#include <cx/utils.h>
+#include <cx/printf.h>
 
 #include <inttypes.h>
 
--- a/src/server/daemon/srvctrl.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/daemon/srvctrl.c	Mon May 26 21:13:11 2025 +0200
@@ -37,7 +37,6 @@
 
 #include "../util/systhr.h"
 
-#include <cx/utils.h>
 #include <cx/buffer.h>
 #include <cx/printf.h>
 
--- a/src/server/daemon/webserver.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/daemon/webserver.c	Mon May 26 21:13:11 2025 +0200
@@ -48,7 +48,6 @@
 #include "../util/pblock.h"
 #include "../util/util.h"
 
-#include <cx/utils.h>
 #include <cx/printf.h>
 #include <cx/compare.h>
 
--- a/src/server/plugins/postgresql/pgtest.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/plugins/postgresql/pgtest.c	Mon May 26 21:13:11 2025 +0200
@@ -37,7 +37,6 @@
 #include "../../webdav/webdav.h"
 
 #include <cx/string.h>
-#include <cx/utils.h>
 #include <cx/buffer.h>
 
 #include "pgtest.h"
--- a/src/server/plugins/postgresql/webdav.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/plugins/postgresql/webdav.c	Mon May 26 21:13:11 2025 +0200
@@ -36,7 +36,6 @@
 #include "../../daemon/http.h" // etag
 
 #include <cx/buffer.h>
-#include <cx/utils.h>
 #include <cx/printf.h>
 #include <libxml/tree.h>
 
--- a/src/server/safs/service.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/safs/service.c	Mon May 26 21:13:11 2025 +0200
@@ -40,7 +40,6 @@
 
 #include "../util/strbuf.h"
 #include <cx/string.h>
-#include <cx/utils.h>
 #include <cx/printf.h>
 
 #include <errno.h>
--- a/src/server/test/testutils.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/test/testutils.c	Mon May 26 21:13:11 2025 +0200
@@ -31,7 +31,6 @@
 #include <limits.h>
 
 #include <cx/string.h>
-#include <cx/utils.h>
 #include <cx/printf.h>
 
 #include "../util/pblock.h"
--- a/src/server/util/util.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/util/util.c	Mon May 26 21:13:11 2025 +0200
@@ -55,7 +55,6 @@
 #include "../public/nsapi.h"
 #include <cx/string.h>
 #include <cx/mempool.h>
-#include <cx/utils.h>
 #include <cx/printf.h>
 
 #include "pblock.h"
--- a/src/server/webdav/requestparser.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/webdav/requestparser.c	Mon May 26 21:13:11 2025 +0200
@@ -31,7 +31,7 @@
 #include <string.h>
 
 #include <cx/string.h>
-#include <cx/utils.h>
+#include <cx/printf.h>
 #include <cx/map.h>
 #include <cx/hash_map.h>
 
--- a/src/server/webdav/xattrbackend.c	Mon May 26 21:07:54 2025 +0200
+++ b/src/server/webdav/xattrbackend.c	Mon May 26 21:13:11 2025 +0200
@@ -39,7 +39,7 @@
 
 #include <cx/hash_map.h>
 #include <cx/buffer.h>
-#include <cx/utils.h>
+#include <cx/printf.h>
 #include <cx/printf.h>
 #include <libxml/tree.h>
 

mercurial