Diff between ce57fdeb2ff6b7ffd93c781d2f3474e8076e2cb5 and 65aaf36f2a36895e4a351ac3fa1cb8da87d4589c

Changed Files

File Additions Deletions Status
mesh/agent.c +1 -1 modified

Full Patch

diff --git a/mesh/agent.c b/mesh/agent.c
index c789b0c..efb8937 100644
--- a/mesh/agent.c
+++ b/mesh/agent.c
@@ -137,7 +137,7 @@ static bool request_decimal(uint16_t len)
 
 static bool request_ascii(uint16_t len)
 {
-	if (len != MAX_ASCII_OOB_LEN)
+	if (len > MAX_ASCII_OOB_LEN)
 		return false;
 
 	rl_printf("Request ASCII key (max characters %d)\n", len);