about summary refs log tree commit diff
path: root/src/nm-online
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2022-05-04 15:38:03 +0200
committerMichael Biebl <biebl@debian.org>2022-05-04 15:38:03 +0200
commitfc1f1b6881ed5199b4cc81face915769a3dc9897 (patch)
treed2b3f6b775541cece8de7ef9e687c72665f5d820 /src/nm-online
parent16cc38ed3d1761b178512c9a6c291ad366c6fad8 (diff)
parent9959fdb2e8ddd06f2161798ca0a39c77d67c652d (diff)
Update upstream source from tag 'upstream/1.37.92'
Update to upstream version '1.37.92'
with Debian dir 0128b715b1fc3e516169a4599c33567587d59088
Diffstat (limited to 'src/nm-online')
-rw-r--r--src/nm-online/nm-online.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nm-online/nm-online.c b/src/nm-online/nm-online.c
index 340c2d19..ee4477db 100644
--- a/src/nm-online/nm-online.c
+++ b/src/nm-online/nm-online.c
@@ -246,7 +246,8 @@ main(int argc, char *argv[])
          0,
          G_OPTION_ARG_INT,
          &t_secs,
-         N_("Time to wait for a connection, in seconds (without the option, default value is 30)"),
+         N_("Time to wait for a connection, in seconds (without the option, default value is 30). "
+               "Maximum value is 2073600 seconds."),
          "<timeout>"},
         {"exit",
          'x',
@@ -289,7 +290,7 @@ main(int argc, char *argv[])
         return EXIT_FAILURE_ERROR;
     }
 
-    if (t_secs < 0 || t_secs > 3600) {
+    if (t_secs < 0 || t_secs > 2073600) {
         g_printerr("%s: %s\n",
                    argv[0],
                    _("Invalid option.  Please use --help to see a list of valid options."));