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");