diff options
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/main.c b/src/or/main.c index 63f538300d..485ef4c686 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1902,14 +1902,14 @@ try_locking(or_options_t *options, int err_if_locked) } } -/* DOCDOC have_lockfile */ +/** Return true iff we've successfully acquired the lock file. */ int have_lockfile(void) { return lockfile != NULL; } -/* DOCDOC release_lockfile */ +/** If we have successfully acquired the lock file, release it. */ void release_lockfile(void) { |