tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 39a780e85a0a8cb42f817d0d948ce8fb97662bd3
parent 3907faf2fdc28a0c9f85279a58f2059c9a44f9b4
Author: Nick Mathewson <nickm@torproject.org>
Date:   Tue, 14 Nov 2017 16:54:20 -0500

Clean up a needlessly complex get_datadir_fname use

Diffstat:
Msrc/or/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/or/main.c b/src/or/main.c @@ -3274,7 +3274,7 @@ try_locking(const or_options_t *options, int err_if_locked) if (lockfile) return 0; else { - char *fname = options_get_datadir_fname2_suffix(options, "lock",NULL,NULL); + char *fname = options_get_datadir_fname(options, "lock"); int already_locked = 0; tor_lockfile_t *lf = tor_lockfile_lock(fname, 0, &already_locked); tor_free(fname);