From f669139c9ee4299c565ad6debddf76a4fde97bea Mon Sep 17 00:00:00 2001 From: rofl0r Date: Wed, 2 Jul 2014 10:10:53 +0200 Subject: [PATCH] common.c: fix trailing whitespace --- src/common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common.c b/src/common.c index 9cab4ff..c126ecf 100644 --- a/src/common.c +++ b/src/common.c @@ -59,7 +59,7 @@ char *get_config_path(char* default_path, char* pbuf, size_t bufsize) { char *path = default_path; if(check_path(path)) goto have; - + // priority 1: env var PROXYCHAINS_CONF_FILE path = getenv(PROXYCHAINS_CONF_FILE_ENV_VAR); if(check_path(path)) @@ -88,10 +88,10 @@ char *get_config_path(char* default_path, char* pbuf, size_t bufsize) { path = "/etc/" PROXYCHAINS_CONF_FILE; if(check_path(path)) goto have; - + perror("couldnt find configuration file"); exit(1); - + return NULL; have: return path;