diff options
| author | Michael Biebl <biebl@debian.org> | 2022-08-16 18:25:29 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2022-08-16 18:25:29 +0200 |
| commit | e8c0c4050b07c08cc0f34d41cdff98f2cdc1cc93 (patch) | |
| tree | 79a3d9572e508d4b193ea175c8ed103b2024f727 /src/nm-online | |
| parent | 49ac65f875a36d7ebcbc8270cf0fc60acbb2e052 (diff) | |
| parent | 0018d1f3cf71d680d7b6bceda55a5717244d8b26 (diff) | |
Update upstream source from tag 'upstream/1.39.90'
Update to upstream version '1.39.90' with Debian dir 898f1bfdb7bf17595463e4195c78d8455df545e6
Diffstat (limited to 'src/nm-online')
| -rw-r--r-- | src/nm-online/nm-online.c | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/src/nm-online/nm-online.c b/src/nm-online/nm-online.c index ee4477db..0807270e 100644 --- a/src/nm-online/nm-online.c +++ b/src/nm-online/nm-online.c @@ -233,30 +233,30 @@ main(int argc, char *argv[]) GOptionContext *opt_ctx = NULL; gboolean success; GOptionEntry options[] = { - {"quiet", 'q', 0, G_OPTION_ARG_NONE, &data.quiet, N_("Don't print anything"), NULL}, - {"wait-for-startup", - 's', - 0, - G_OPTION_ARG_NONE, - &data.wait_startup, - N_("Wait for NetworkManager startup instead of a connection"), - NULL}, - {"timeout", - 't', - 0, - G_OPTION_ARG_INT, - &t_secs, - N_("Time to wait for a connection, in seconds (without the option, default value is 30). " + {"quiet", 'q', 0, G_OPTION_ARG_NONE, &data.quiet, N_("Don't print anything"), NULL}, + {"wait-for-startup", + 's', + 0, + G_OPTION_ARG_NONE, + &data.wait_startup, + N_("Wait for NetworkManager startup instead of a connection"), + NULL}, + {"timeout", + 't', + 0, + G_OPTION_ARG_INT, + &t_secs, + N_("Time to wait for a connection, in seconds (without the option, default value is 30). " "Maximum value is 2073600 seconds."), - "<timeout>"}, - {"exit", - 'x', - 0, - G_OPTION_ARG_NONE, - &data.exit_no_nm, - N_("Exit immediately if NetworkManager is not running or connecting"), - NULL}, - {NULL}, + "<timeout>"}, + {"exit", + 'x', + 0, + G_OPTION_ARG_NONE, + &data.exit_no_nm, + N_("Exit immediately if NetworkManager is not running or connecting"), + NULL}, + {NULL}, }; /* Set locale to be able to use environment variables */ |