diff options
author | Roger Dingledine <arma@torproject.org> | 2008-10-01 03:41:33 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-10-01 03:41:33 +0000 |
commit | c7af43a62497fb3e10c8de9a5bb8cc8113efb99c (patch) | |
tree | 847f11b6f733a3aa4af359b8d77b56f359327bc2 /src/common/container.h | |
parent | 914086628776bf915f7359a6486427c74391134a (diff) | |
download | tor-c7af43a62497fb3e10c8de9a5bb8cc8113efb99c.tar.gz tor-c7af43a62497fb3e10c8de9a5bb8cc8113efb99c.zip |
Now NodeFamily and MyFamily config options allow spaces in
identity fingerprints, so it's easier to paste them in.
Suggested by Lucky Green.
svn:r17021
Diffstat (limited to 'src/common/container.h')
-rw-r--r-- | src/common/container.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/container.h b/src/common/container.h index 0a790ea4ac..b4ca358289 100644 --- a/src/common/container.h +++ b/src/common/container.h @@ -121,6 +121,7 @@ void smartlist_pqueue_assert_ok(smartlist_t *sl, #define SPLIT_SKIP_SPACE 0x01 #define SPLIT_IGNORE_BLANK 0x02 +#define SPLIT_STRIP_SPACE 0x04 int smartlist_split_string(smartlist_t *sl, const char *str, const char *sep, int flags, int max); char *smartlist_join_strings(smartlist_t *sl, const char *join, int terminate, |