diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-03-17 17:21:09 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-03-17 17:21:09 +0000 |
commit | ea6f636e94ca028d223ab84f89cc8fae3f26a0bc (patch) | |
tree | ea987fad84fad425365cb384fe8d1e69abc63ace /src/common | |
parent | 9a24158c698bd2cce6ddbea365a15f7e02bddf3a (diff) | |
download | tor-ea6f636e94ca028d223ab84f89cc8fae3f26a0bc.tar.gz tor-ea6f636e94ca028d223ab84f89cc8fae3f26a0bc.zip |
r18890@catbus: nickm | 2008-03-17 13:19:29 -0400
Clarify documentation for file_status a little
svn:r14079
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.c b/src/common/util.c index 5665d70b49..669905dc03 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -1397,7 +1397,7 @@ clean_name_for_stat(char *name) /** Return FN_ERROR if filename can't be read, FN_NOENT if it doesn't * exist, FN_FILE if it is a regular file, or FN_DIR if it's a - * directory. */ + * directory. On FN_ERROR, sets errno. */ file_status_t file_status(const char *fname) { |