diff options
| author | Michael Biebl <biebl@debian.org> | 2022-10-04 00:56:46 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2022-10-04 00:56:46 +0200 |
| commit | 3612e6355f3f40d264ec4657547761069baa5430 (patch) | |
| tree | 768e4f5b37b66f540dd7030aa2eaff2ac7bb0168 /src/nm-online | |
| parent | 7e9f00a3be8f65535e6620b344443ec4d403212b (diff) | |
| parent | 6f7fcde10e47d8af865af336becf1fd8a446e62e (diff) | |
Merge tag 'debian/1.40.0-1' into debian/bullseye-backports
network-manager Debian release 1.40.0-1
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 */ |