diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-12-08 14:59:28 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-12-08 14:59:28 -0500 |
commit | baef0843a424116026f3f97185dae89271903041 (patch) | |
tree | da4c1885084c6d4c94accf86247f8f7bee87b3a9 /src/lib/fs | |
parent | dbc8d2a4e476c06f59db3ff79b66afc8bc4ea27c (diff) | |
download | tor-baef0843a424116026f3f97185dae89271903041.tar.gz tor-baef0843a424116026f3f97185dae89271903041.zip |
Fix a couple of documentation comments related to #40094
Diffstat (limited to 'src/lib/fs')
-rw-r--r-- | src/lib/fs/conffile.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/fs/conffile.c b/src/lib/fs/conffile.c index 1f58a3590c..acd8dfb8cc 100644 --- a/src/lib/fs/conffile.c +++ b/src/lib/fs/conffile.c @@ -53,10 +53,10 @@ config_get_lines_include(const char *string, config_line_t **result, opened_lst, 1, NULL, config_process_include); } -/** Returns a list of paths obtained when expading globs in <b>pattern</b>. If - * <b>pattern</b> has no globs, returns a list with <b>pattern</b> if it is an - * existing path or NULL otherwise. If <b>opened_files</b> is provided, adds - * paths opened by glob to it. Returns NULL on failure. */ +/** Return a list of paths obtained when expading globs in <b>pattern</b>. + * If <b>pattern</b> has no globs, return a list with <b>pattern</b> in it. + * If <b>opened_files</b> is provided, add paths opened by glob to it. + * Return NULL on failure. */ static smartlist_t * expand_glob(const char *pattern, smartlist_t *opened_files) { |