Skip to content

Commit f1f41b7

Browse files
committed
Configuration for hamlib RIG was not being parsed correctly.
modified: config.c
1 parent d491f51 commit f1f41b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1546,7 +1546,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
15461546
#ifdef USE_HAMLIB
15471547
p_audio_config->achan[channel].octrl[ot].ptt_method = PTT_METHOD_HAMLIB;
15481548

1549-
t = strtok (NULL, " ,\t\n\r");
1549+
t = split(NULL,0);
15501550
if (t == NULL) {
15511551
text_color_set(DW_COLOR_ERROR);
15521552
dw_printf ("Config file line %d: Missing RIG number.\n", line);
@@ -1715,7 +1715,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
17151715
continue;
17161716
}
17171717

1718-
t = strtok (NULL, " ,\t\n\r");
1718+
t = split(NULL,0);
17191719
if (t == NULL) {
17201720
text_color_set(DW_COLOR_ERROR);
17211721
dw_printf ("Config file line %d: Missing port, model[, key=value].\n",
@@ -1725,7 +1725,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
17251725

17261726
strncpy (port.pathname, t, FILPATHLEN - 1);
17271727

1728-
t = strtok (NULL, " ,\t\n\r");
1728+
t = split(NULL,0);
17291729
if (t == NULL) {
17301730
text_color_set(DW_COLOR_ERROR);
17311731
dw_printf ("Config file line %d: Missing model[, key=value]\n", line);

0 commit comments

Comments
 (0)