diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-21 17:00:48 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-22 09:49:13 -0400 |
commit | de508c5f50af855742b59579afd6c9c328eb7cd6 (patch) | |
tree | 46f3e34bc7fca3a5909bf7abad202a53a1d451f4 /src/or/parsecommon.c | |
parent | 9cf6fc91b1d0870dab8bf87feb9132e7e0de2808 (diff) | |
download | tor-de508c5f50af855742b59579afd6c9c328eb7cd6.tar.gz tor-de508c5f50af855742b59579afd6c9c328eb7cd6.zip |
Extract smartlist.h from container.h
Diffstat (limited to 'src/or/parsecommon.c')
-rw-r--r-- | src/or/parsecommon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/parsecommon.c b/src/or/parsecommon.c index 09c7d665fe..298d3658ba 100644 --- a/src/or/parsecommon.c +++ b/src/or/parsecommon.c @@ -9,6 +9,7 @@ #include "or/parsecommon.h" #include "common/torlog.h" #include "common/util_format.h" +#include "lib/container/smartlist.h" #define MIN_ANNOTATION A_PURPOSE #define MAX_ANNOTATION A_UNKNOWN_ @@ -448,4 +449,3 @@ find_all_by_keyword(const smartlist_t *s, directory_keyword k) }); return out; } - |