Skip to content

Commit eb813e5

Browse files
committed
Reduce noise.
1 parent 7573f99 commit eb813e5

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/il2p_header.c

+10-4
Original file line numberDiff line numberDiff line change
@@ -462,8 +462,11 @@ packet_t il2p_decode_header_type_1 (unsigned char *hdr, int num_sym_changed)
462462
for (int i = 0; i < strlen(addrs[AX25_DESTINATION]); i++) {
463463
if (! isupper(addrs[AX25_DESTINATION][i]) && ! isdigit(addrs[AX25_DESTINATION][i])) {
464464
if (num_sym_changed == 0) {
465-
text_color_set(DW_COLOR_ERROR);
466-
dw_printf ("IL2P: Invalid character '%c' in destination address '%s'\n", addrs[AX25_DESTINATION][i], addrs[AX25_DESTINATION]);
465+
// This can pop up sporadically when receiving random noise.
466+
// Would be better to show only when debug is enabled but variable not available here.
467+
// TODO: For now we will just suppress it.
468+
//text_color_set(DW_COLOR_ERROR);
469+
//dw_printf ("IL2P: Invalid character '%c' in destination address '%s'\n", addrs[AX25_DESTINATION][i], addrs[AX25_DESTINATION]);
467470
}
468471
return (NULL);
469472
}
@@ -477,8 +480,11 @@ packet_t il2p_decode_header_type_1 (unsigned char *hdr, int num_sym_changed)
477480
for (int i = 0; i < strlen(addrs[AX25_SOURCE]); i++) {
478481
if (! isupper(addrs[AX25_SOURCE][i]) && ! isdigit(addrs[AX25_SOURCE][i])) {
479482
if (num_sym_changed == 0) {
480-
text_color_set(DW_COLOR_ERROR);
481-
dw_printf ("IL2P: Invalid character '%c' in source address '%s'\n", addrs[AX25_SOURCE][i], addrs[AX25_SOURCE]);
483+
// This can pop up sporadically when receiving random noise.
484+
// Would be better to show only when debug is enabled but variable not available here.
485+
// TODO: For now we will just suppress it.
486+
//text_color_set(DW_COLOR_ERROR);
487+
//dw_printf ("IL2P: Invalid character '%c' in source address '%s'\n", addrs[AX25_SOURCE][i], addrs[AX25_SOURCE]);
482488
}
483489
return (NULL);
484490
}

0 commit comments

Comments
 (0)