@@ -462,8 +462,11 @@ packet_t il2p_decode_header_type_1 (unsigned char *hdr, int num_sym_changed)
462
462
for (int i = 0 ; i < strlen (addrs [AX25_DESTINATION ]); i ++ ) {
463
463
if (! isupper (addrs [AX25_DESTINATION ][i ]) && ! isdigit (addrs [AX25_DESTINATION ][i ])) {
464
464
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]);
467
470
}
468
471
return (NULL );
469
472
}
@@ -477,8 +480,11 @@ packet_t il2p_decode_header_type_1 (unsigned char *hdr, int num_sym_changed)
477
480
for (int i = 0 ; i < strlen (addrs [AX25_SOURCE ]); i ++ ) {
478
481
if (! isupper (addrs [AX25_SOURCE ][i ]) && ! isdigit (addrs [AX25_SOURCE ][i ])) {
479
482
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]);
482
488
}
483
489
return (NULL );
484
490
}
0 commit comments