From 788ffd9d261f97c619ea98f6760b0b456e4453bb Mon Sep 17 00:00:00 2001 From: Adam Hamsik Date: Sat, 28 Jan 2012 19:51:23 +0100 Subject: [PATCH] Use standard PROXYCHAINS_CONF_FILE instead of hardcoded config name. --- src/main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index ba65b7b..ecb139a 100644 --- a/src/main.c +++ b/src/main.c @@ -130,13 +130,14 @@ int main(int argc, char *argv[]) { /* Check for default config file in two locations {install_prefix}/etc /etc */ // priority 4: $INSTALL_PREFIX/etc/proxychains.conf - snprintf(pbuf, sizeof(pbuf), "%s/etc/proxychains.conf", INSTALL_PREFIX); + snprintf(pbuf, sizeof(pbuf), "%s/etc/%s", INSTALL_PREFIX, PROXYCHAINS_CONF_FILE); path = pbuf; if(check_path(path)) goto have; // priority 5: /etc/proxychains.conf - path = "/etc/proxychains.conf"; + snprintf(pbuf, sizeof(pbuf), "/etc/%s", PROXYCHAINS_CONF_FILE); + path = pbuf; if(check_path(path)) goto have; perror("Couldn't find configuration file");