Skip to content

Commit 75ccf18

Browse files
committed
Improve config error checking.
1 parent 019ff3b commit 75ccf18

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/config.c

+7-7
Original file line numberDiff line numberDiff line change
@@ -4600,6 +4600,13 @@ void config_init (char *fname, struct audio_s *p_audio_config,
46004600
continue;
46014601
}
46024602
n = atoi(t);
4603+
t = split(NULL,0);
4604+
if (t != NULL) {
4605+
text_color_set(DW_COLOR_ERROR);
4606+
dw_printf ("Line %d: Unexpected \"%s\" after the port number.\n", line, t);
4607+
dw_printf ("Perhaps you were trying to use feature available only with KISSPORT.\n");
4608+
continue;
4609+
}
46034610
if ((n >= MIN_IP_PORT_NUMBER && n <= MAX_IP_PORT_NUMBER) || n == 0) {
46044611
p_misc_config->agwpe_port = n;
46054612
}
@@ -4609,13 +4616,6 @@ void config_init (char *fname, struct audio_s *p_audio_config,
46094616
dw_printf ("Line %d: Invalid port number for AGW TCPIP Socket Interface. Using %d.\n",
46104617
line, p_misc_config->agwpe_port);
46114618
}
4612-
t = split(NULL,0);
4613-
if (t != NULL) {
4614-
text_color_set(DW_COLOR_ERROR);
4615-
dw_printf ("Line %d: Unexpected \"%s\" is ignored.\n", line, t);
4616-
dw_printf ("Perhaps you were trying to use feature available only with KISSPORT.\n");
4617-
continue;
4618-
}
46194619
}
46204620

46214621
/*

0 commit comments

Comments
 (0)