diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-26 11:27:33 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-26 11:27:33 -0400 |
commit | 92d8284a9792267514cbe21f3ce1564f6ad0e10b (patch) | |
tree | f4a82d867c9fb863f7a3f56a2baffb509a2af5c5 /src/common/storagedir.c | |
parent | b4e23dba930cbb8168151e1fe9dcf280615d6f3b (diff) | |
parent | 1b93b065fc3eb52fe5674d6df05c71c505ed1ef3 (diff) | |
download | tor-92d8284a9792267514cbe21f3ce1564f6ad0e10b.tar.gz tor-92d8284a9792267514cbe21f3ce1564f6ad0e10b.zip |
Merge branch 'log_dependencies'
Diffstat (limited to 'src/common/storagedir.c')
-rw-r--r-- | src/common/storagedir.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/common/storagedir.c b/src/common/storagedir.c index ee80bcc530..10b2301274 100644 --- a/src/common/storagedir.c +++ b/src/common/storagedir.c @@ -1,13 +1,13 @@ /* Copyright (c) 2017-2018, The Tor Project, Inc. */ /* See LICENSE for licensing information */ -#include "common/container.h" +#include "lib/container/smartlist.h" #include "common/compat.h" #include "common/confline.h" #include "common/memarea.h" #include "common/sandbox.h" #include "common/storagedir.h" -#include "common/torlog.h" +#include "lib/log/torlog.h" #include "common/util.h" #ifdef HAVE_SYS_TYPES_H @@ -583,4 +583,3 @@ storage_dir_get_max_files(storage_dir_t *d) { return d->max_files; } - |