File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -504,8 +504,10 @@ void decode_aprs_print (decode_aprs_t *A) {
504
504
//dw_printf ("DEBUG decode_aprs_print stemp3=%s mfr=%s\n", stemp, A->g_mfr);
505
505
506
506
if (strlen (A -> g_mfr ) > 0 ) {
507
- if (strcmp (A -> g_dest , "APRS" ) == 0 ) {
508
- strlcat (stemp , "\nUse of \"APRS\" in the destination field is obsolete." , sizeof (stemp ));
507
+ if (strcmp (A -> g_dest , "APRS" ) == 0 || strcmp (A -> g_dest , "BEACON" ) == 0 ) {
508
+ strlcat (stemp , "\nUse of \"" , sizeof (stemp ));
509
+ strlcat (stemp , A -> g_dest , sizeof (stemp ));
510
+ strlcat (stemp , "\" in the destination field is obsolete." , sizeof (stemp ));
509
511
strlcat (stemp , " You can help to improve the quality of APRS signals." , sizeof (stemp ));
510
512
strlcat (stemp , "\nTell the sender (" , sizeof (stemp ));
511
513
strlcat (stemp , A -> g_src , sizeof (stemp ));
You can’t perform that action at this time.
0 commit comments