From eb33f7f73f5a9995d6c1a3eb23f0aaa2de310a2c Mon Sep 17 00:00:00 2001 From: Yuri Pankov Date: Mon, 15 Oct 2018 20:11:53 +0000 Subject: pw: respect path specified using -V when writing pw.conf, and -C is not explicitly specified. -V path is already used to determine which file to read default values from, so it's only logical to write them to the same file. PR: 231653 Reviewed by: eugen, bapt Approved by: re (gjb), kib (mentor) Differential Revision: https://reviews.freebsd.org/D17566 --- pw/pw_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pw/pw_utils.c') diff --git a/pw/pw_utils.c b/pw/pw_utils.c index e483977..fbf4a3f 100644 --- a/pw/pw_utils.c +++ b/pw/pw_utils.c @@ -71,7 +71,7 @@ get_userconfig(const char *config) if (config != NULL) return (read_userconfig(config)); - snprintf(defaultcfg, sizeof(defaultcfg), "%s/pw.conf", conf.etcpath); + snprintf(defaultcfg, sizeof(defaultcfg), "%s/" _PW_CONF, conf.etcpath); return (read_userconfig(defaultcfg)); } -- cgit v1.2.3-56-ge451