Commit 6a05abad authored by valenok's avatar valenok

fixed config file loading

parent 53dde04b
......@@ -187,7 +187,7 @@ static void process_command_line_arguments(char *argv[], char **options) {
/* Should we use a config file ? */
if (argv[1] != NULL && argv[2] == NULL) {
config_file = argv[1];
} else if (argv[1] == NULL && (p = strchr(argv[0], DIRSEP)) == NULL) {
} else if (argv[1] == NULL && (p = strrchr(argv[0], DIRSEP)) == NULL) {
// No command line flags specified. Look where binary lives
config_file = CONFIG_FILE;
} else if (argv[1] == NULL) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment