From 9c7e7f1f80e30a1a0361f345448d83e4b4eda34a Mon Sep 17 00:00:00 2001 From: "Joseph C. Lehner" Date: Sun, 6 Dec 2020 16:52:05 +0100 Subject: [PATCH] Fix default upload timeout --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 3d4b682..79843b7 100644 --- a/main.c +++ b/main.c @@ -133,7 +133,7 @@ int main(int argc, char **argv) bool list = false, have_dest_mac = false; struct nmrpd_args args = { .rx_timeout = 1000, - .ul_timeout = 15 * 60, + .ul_timeout = 15 * 60 * 1000, .tftpcmd = NULL, .file_local = NULL, .file_remote = NULL,