Skip to content

Commit cac83f2

Browse files
committed
Improve error message.
1 parent b4b7b13 commit cac83f2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/decode_aprs.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -504,8 +504,10 @@ void decode_aprs_print (decode_aprs_t *A) {
504504
//dw_printf ("DEBUG decode_aprs_print stemp3=%s mfr=%s\n", stemp, A->g_mfr);
505505

506506
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));
509511
strlcat (stemp, " You can help to improve the quality of APRS signals.", sizeof(stemp));
510512
strlcat (stemp, "\nTell the sender (", sizeof(stemp));
511513
strlcat (stemp, A->g_src, sizeof(stemp));

0 commit comments

Comments
 (0)