From 0e25df0b4eacfc5f4c6dfe9b5418486212e959ac Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sat, 8 Jul 2023 08:01:05 -0500 Subject: [PATCH] Remove timeout test code from iofunc.c https://github.com/Hamlib/Hamlib/issues/1329 --- src/iofunc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iofunc.c b/src/iofunc.c index 0fc8551d2..4be5d5633 100644 --- a/src/iofunc.c +++ b/src/iofunc.c @@ -1338,7 +1338,7 @@ static int read_string_generic(hamlib_port_t *p, ssize_t rd_count = 0; int result; int timeout_save = p->timeout; - p->timeout = 2; +// p->timeout = 2; result = port_wait_for_data(p, direct); p->timeout = timeout_save;