From 45d7a3e94b14b375ee11e198778b3cdfa89cfae6 Mon Sep 17 00:00:00 2001 From: Carl Philipp Klemm Date: Sat, 4 Apr 2026 09:31:29 +0200 Subject: [PATCH] Add missing t option to options switch --- options.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/options.h b/options.h index 17ad853..93832e6 100644 --- a/options.h +++ b/options.h @@ -61,6 +61,9 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state) case 'i': config->id = strtoul(arg, NULL, 0); break; + case 't': + config->timeout = strtoul(arg, NULL, 0); + break; default: return ARGP_ERR_UNKNOWN; }