diff options
author | teor <teor2345@gmail.com> | 2016-11-02 14:11:26 +1100 |
---|---|---|
committer | teor <teor2345@gmail.com> | 2016-11-02 14:11:26 +1100 |
commit | 2f48693663c3703e1015fd438fc585cd2857ba71 (patch) | |
tree | e7fc8bef5f78a60734507b65d25d7618c0ba4e4e /src/common | |
parent | a906ff88a3660ff689a2bd630836b74d70a1ce6c (diff) | |
download | tor-2f48693663c3703e1015fd438fc585cd2857ba71.tar.gz tor-2f48693663c3703e1015fd438fc585cd2857ba71.zip |
Improve comments in check_private_dir and onion poisoning
Comment changes only
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/util.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/common/util.c b/src/common/util.c index 9162967907..a7bce2ea6c 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -2191,11 +2191,13 @@ file_status(const char *fname) } } -/** Check whether <b>dirname</b> exists and is private. If yes return 0. If - * it does not exist, and <b>check</b>&CPD_CREATE is set, try to create it - * and return 0 on success. If it does not exist, and - * <b>check</b>&CPD_CHECK, and we think we can create it, return 0. Else - * return -1. If CPD_GROUP_OK is set, then it's okay if the directory +/** Check whether <b>dirname</b> exists and is private. If yes return 0. + * If <b>dirname</b> does not exist: + * - if <b>check</b>&CPD_CREATE, try to create it and return 0 on success. + * - if <b>check</b>&CPD_CHECK, and we think we can create it, return 0. + * - if <b>check</b>&CPD_CHECK is false, and the directory exists, return 0. + * - otherwise, return -1. + * If CPD_GROUP_OK is set, then it's okay if the directory * is group-readable, but in all cases we create the directory mode 0700. * If CPD_GROUP_READ is set, existing directory behaves as CPD_GROUP_OK and * if the directory is created it will use mode 0750 with group read |