From: Kirill Isakov Date: Thu, 28 Apr 2022 15:05:36 +0000 (+0600) Subject: Convert tincd path args to absolute paths X-Git-Url: https://tinc-vpn.org/git/browse?a=commitdiff_plain;h=3d787920d51a35e74e442c7265be3b13b69ad8e4;hp=3d787920d51a35e74e442c7265be3b13b69ad8e4;p=tinc Convert tincd path args to absolute paths Since tincd chdirs to its own configuration directory and only then resolves relative paths passed as command-line arguments (like --config and --pidfile), statements like these: $ tinc -c confdir init foo … $ tincd -c confdir -D didn't work properly. Now we resolve paths to absolute right when we receive them, and only then do chdir. ---