mirror of
https://agent.ghink.cloud/wb2osz/direwolf
synced 2025-04-04 11:48:30 +00:00
Better error message for unprintable data type indicator.
This commit is contained in:
parent
a7a84269fc
commit
d9d6bb4257
@ -164,7 +164,12 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet)
|
||||
|
||||
A->g_quiet = quiet;
|
||||
|
||||
snprintf (A->g_msg_type, sizeof(A->g_msg_type), "Unknown APRS Data Type Indicator \"%c\"", *pinfo);
|
||||
if (isprint(*pinfo)) {
|
||||
snprintf (A->g_msg_type, sizeof(A->g_msg_type), "Unknown APRS Data Type Indicator \"%c\"", *pinfo);
|
||||
}
|
||||
else {
|
||||
snprintf (A->g_msg_type, sizeof(A->g_msg_type), "ERROR!!! Unknown APRS Data Type Indicator: unprintable 0x%02x", *pinfo);
|
||||
}
|
||||
|
||||
A->g_symbol_table = '/'; /* Default to primary table. */
|
||||
A->g_symbol_code = ' '; /* What should we have for default symbol? */
|
||||
|
Loading…
x
Reference in New Issue
Block a user