aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-06-21 15:40:15 -0400
committerNick Mathewson <nickm@torproject.org>2018-06-22 09:49:13 -0400
commitb8be8265b6dc477efe591ccdb14fcd4b044dd241 (patch)
tree9ddf6ea84beeba5eff85b1caf746db2a625470b5 /src/common
parent77dff00b18fc70acdb2939dd20197a0044d41fe5 (diff)
downloadtor-b8be8265b6dc477efe591ccdb14fcd4b044dd241.tar.gz
tor-b8be8265b6dc477efe591ccdb14fcd4b044dd241.zip
Rectify include paths after container split (automatic)
Diffstat (limited to 'src/common')
-rw-r--r--src/common/address.c2
-rw-r--r--src/common/address.h2
-rw-r--r--src/common/address_set.c2
-rw-r--r--src/common/compat.c2
-rw-r--r--src/common/compat_time.c2
-rw-r--r--src/common/compat_winthreads.c2
-rw-r--r--src/common/confline.c2
-rw-r--r--src/common/confline.h2
-rw-r--r--src/common/log.c2
-rw-r--r--src/common/memarea.c2
-rw-r--r--src/common/sandbox.c2
-rw-r--r--src/common/storagedir.c2
-rw-r--r--src/common/util.c2
-rw-r--r--src/common/util_bug.c2
14 files changed, 14 insertions, 14 deletions
diff --git a/src/common/address.c b/src/common/address.c
index f135f1ffd1..27f8c4efe2 100644
--- a/src/common/address.c
+++ b/src/common/address.c
@@ -40,7 +40,7 @@
#include "common/util_format.h"
#include "common/address.h"
#include "common/torlog.h"
-#include "common/container.h"
+#include "lib/container/container.h"
#include "common/sandbox.h"
#ifdef HAVE_SYS_TIME_H
diff --git a/src/common/address.h b/src/common/address.h
index 6986143f6e..b8fccd81ec 100644
--- a/src/common/address.h
+++ b/src/common/address.h
@@ -15,7 +15,7 @@
#include "orconfig.h"
#include "lib/cc/torint.h"
#include "common/compat.h"
-#include "common/container.h"
+#include "lib/container/container.h"
#include "common/util_bug.h"
#ifdef ADDRESS_PRIVATE
diff --git a/src/common/address_set.c b/src/common/address_set.c
index 65c4cbf1e1..d30343b1cc 100644
--- a/src/common/address_set.c
+++ b/src/common/address_set.c
@@ -14,7 +14,7 @@
#include "common/address_set.h"
#include "common/address.h"
#include "common/compat.h"
-#include "common/container.h"
+#include "lib/container/container.h"
#include "lib/crypt_ops/crypto_rand.h"
#include "common/util.h"
#include "siphash.h"
diff --git a/src/common/compat.c b/src/common/compat.c
index dece798bcd..577ebe7574 100644
--- a/src/common/compat.c
+++ b/src/common/compat.c
@@ -126,7 +126,7 @@ SecureZeroMemory(PVOID ptr, SIZE_T cnt)
#include "common/torlog.h"
#include "common/util.h"
-#include "common/container.h"
+#include "lib/container/container.h"
#include "common/address.h"
#include "common/sandbox.h"
diff --git a/src/common/compat_time.c b/src/common/compat_time.c
index da323e55ac..032c4e43a1 100644
--- a/src/common/compat_time.c
+++ b/src/common/compat_time.c
@@ -37,7 +37,7 @@
#include "lib/err/torerr.h"
#include "common/torlog.h"
#include "common/util.h"
-#include "common/container.h"
+#include "lib/container/container.h"
#ifndef HAVE_GETTIMEOFDAY
#ifdef HAVE_FTIME
diff --git a/src/common/compat_winthreads.c b/src/common/compat_winthreads.c
index 95e70d06bf..eeb0b97510 100644
--- a/src/common/compat_winthreads.c
+++ b/src/common/compat_winthreads.c
@@ -16,7 +16,7 @@
#include <windows.h>
#include <process.h>
#include "common/util.h"
-#include "common/container.h"
+#include "lib/container/container.h"
#include "common/torlog.h"
/* This value is more or less total cargo-cult */
diff --git a/src/common/confline.c b/src/common/confline.c
index 2ea2e9c3b8..7343c5f528 100644
--- a/src/common/confline.c
+++ b/src/common/confline.c
@@ -8,7 +8,7 @@
#include "common/confline.h"
#include "common/torlog.h"
#include "common/util.h"
-#include "common/container.h"
+#include "lib/container/container.h"
static int config_get_lines_aux(const char *string, config_line_t **result,
int extended, int allow_include,
diff --git a/src/common/confline.h b/src/common/confline.h
index 4cc8286fc3..10af34a0a6 100644
--- a/src/common/confline.h
+++ b/src/common/confline.h
@@ -7,7 +7,7 @@
#ifndef TOR_CONFLINE_H
#define TOR_CONFLINE_H
-#include "common/container.h"
+#include "lib/container/container.h"
/** Ordinary configuration line. */
#define CONFIG_LINE_NORMAL 0
diff --git a/src/common/log.c b/src/common/log.c
index 928a3fba8a..8ea686a12e 100644
--- a/src/common/log.c
+++ b/src/common/log.c
@@ -33,7 +33,7 @@
#include "common/util.h"
#define LOG_PRIVATE
#include "common/torlog.h"
-#include "common/container.h"
+#include "lib/container/container.h"
#include "lib/err/torerr.h"
#ifdef HAVE_ANDROID_LOG_H
diff --git a/src/common/memarea.c b/src/common/memarea.c
index 12ad9c511c..ef6b78ecc5 100644
--- a/src/common/memarea.c
+++ b/src/common/memarea.c
@@ -13,7 +13,7 @@
#include "common/util.h"
#include "common/compat.h"
#include "common/torlog.h"
-#include "common/container.h"
+#include "lib/container/container.h"
#ifndef DISABLE_MEMORY_SENTINELS
diff --git a/src/common/sandbox.c b/src/common/sandbox.c
index a33463f74b..e67cedf0b7 100644
--- a/src/common/sandbox.c
+++ b/src/common/sandbox.c
@@ -33,7 +33,7 @@
#include <stdlib.h>
#include "common/sandbox.h"
-#include "common/container.h"
+#include "lib/container/container.h"
#include "lib/err/torerr.h"
#include "common/torlog.h"
#include "lib/cc/torint.h"
diff --git a/src/common/storagedir.c b/src/common/storagedir.c
index ee80bcc530..f3270ce7b8 100644
--- a/src/common/storagedir.c
+++ b/src/common/storagedir.c
@@ -1,7 +1,7 @@
/* Copyright (c) 2017-2018, The Tor Project, Inc. */
/* See LICENSE for licensing information */
-#include "common/container.h"
+#include "lib/container/container.h"
#include "common/compat.h"
#include "common/confline.h"
#include "common/memarea.h"
diff --git a/src/common/util.c b/src/common/util.c
index fbb2fed395..cd8ff93a3d 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -18,7 +18,7 @@
#include "common/torlog.h"
#include "lib/crypt_ops/crypto_digest.h"
#include "lib/cc/torint.h"
-#include "common/container.h"
+#include "lib/container/container.h"
#include "common/address.h"
#include "common/sandbox.h"
#include "lib/err/backtrace.h"
diff --git a/src/common/util_bug.c b/src/common/util_bug.c
index 524d48c68a..3b249bdfc1 100644
--- a/src/common/util_bug.c
+++ b/src/common/util_bug.c
@@ -11,7 +11,7 @@
#include "common/util_bug.h"
#include "common/torlog.h"
#include "lib/err/backtrace.h"
-#include "common/container.h"
+#include "lib/container/container.h"
#ifdef __COVERITY__
int bug_macro_deadcode_dummy__ = 0;