From 5be0f4040538c5940a50ed17cd7f8a1c9c21228e Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Fri, 10 Jul 2020 15:58:35 -0400 Subject: [PATCH] Allow all printable 7-bit ASCII chars in addresses --- include/patty/ax25.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/patty/ax25.h b/include/patty/ax25.h index 05a1bb5..a098f04 100644 --- a/include/patty/ax25.h +++ b/include/patty/ax25.h @@ -58,7 +58,7 @@ typedef struct _patty_ax25_if patty_ax25_if; #include #define PATTY_AX25_ADDR_CHAR_VALID(c) \ - ((c >= 0x20 && c <= 0x5a)) + ((c >= 0x20 && c <= 0x7e)) #define PATTY_AX25_ADDR_OCTET_LAST(c) \ ((c & 0x01) == 0x01)