summaryrefslogtreecommitdiff
path: root/minecproxy/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'minecproxy/main.c')
-rw-r--r--minecproxy/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/minecproxy/main.c b/minecproxy/main.c
index b5a195b..92961e2 100644
--- a/minecproxy/main.c
+++ b/minecproxy/main.c
@@ -255,6 +255,7 @@ static void cfg_read()
char *pos = buf;
size_t rd = 0;
size_t r;
+ unsigned lineno;
assert_return(cfg);
@@ -294,7 +295,7 @@ static void cfg_read()
*pos = '\0';
pos = buf;
- if (!config_parse_header("mcproxy", &pos))
+ if (!config_parse_header("mcproxy", &pos, &lineno))
die("main config file (%s) missing/invalid header", path);
while (true) {
@@ -303,7 +304,7 @@ static void cfg_read()
struct cfg_value value;
if (!config_parse_line(path, &pos, mcfg_key_map, &key, &keyname,
- &value, false))
+ &value, false, &lineno))
break;
if (key == MCFG_KEY_INVALID)