diff options
author | George Kadianakis <desnacked@riseup.net> | 2016-08-25 01:44:34 +0300 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2016-11-04 10:32:50 -0400 |
commit | d795ed5871010b8ad6d216f5f4381e4191cb147c (patch) | |
tree | 47dff1ca705a55c78e8725b5007e9de54f4717f9 /src/or/parsecommon.c | |
parent | a8efd087bdd937027713217d74e1cfd40fba4961 (diff) | |
download | tor-d795ed5871010b8ad6d216f5f4381e4191cb147c.tar.gz tor-d795ed5871010b8ad6d216f5f4381e4191cb147c.zip |
Make check-spaces happy :)
Signed-off-by: David Goulet <dgoulet@torproject.org>
Signed-off-by: George Kadianakis <desnacked@riseup.net>
Diffstat (limited to 'src/or/parsecommon.c')
-rw-r--r-- | src/or/parsecommon.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/or/parsecommon.c b/src/or/parsecommon.c index 72e69e8ea3..6622d7d671 100644 --- a/src/or/parsecommon.c +++ b/src/or/parsecommon.c @@ -146,7 +146,6 @@ tokenize_string(memarea_t *area, return 0; } - /** Helper: parse space-separated arguments from the string <b>s</b> ending at * <b>eol</b>, and store them in the args field of <b>tok</b>. Store the * number of parsed elements into the n_args field of <b>tok</b>. Allocate @@ -243,8 +242,6 @@ token_check_object(memarea_t *area, const char *kwd, return tok; } - - /** Helper function: read the next token from *s, advance *s to the end of the * token, and return the parsed token. Parse *<b>s</b> according to the list * of tokens in <b>table</b>. @@ -408,7 +405,6 @@ get_next_token(memarea_t *area, #undef STRNDUP } - /** Find the first token in <b>s</b> whose keyword is <b>keyword</b>; fail * with an assert if no such keyword is found. */ @@ -451,3 +447,4 @@ find_all_by_keyword(smartlist_t *s, directory_keyword k) }); return out; } + |