Skip to content

Commit d9d6bb4

Browse files
committed
Better error message for unprintable data type indicator.
1 parent a7a8426 commit d9d6bb4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

decode_aprs.c

+6-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,12 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet)
164164

165165
A->g_quiet = quiet;
166166

167-
snprintf (A->g_msg_type, sizeof(A->g_msg_type), "Unknown APRS Data Type Indicator \"%c\"", *pinfo);
167+
if (isprint(*pinfo)) {
168+
snprintf (A->g_msg_type, sizeof(A->g_msg_type), "Unknown APRS Data Type Indicator \"%c\"", *pinfo);
169+
}
170+
else {
171+
snprintf (A->g_msg_type, sizeof(A->g_msg_type), "ERROR!!! Unknown APRS Data Type Indicator: unprintable 0x%02x", *pinfo);
172+
}
168173

169174
A->g_symbol_table = '/'; /* Default to primary table. */
170175
A->g_symbol_code = ' '; /* What should we have for default symbol? */

0 commit comments

Comments
 (0)