diff options
| author | Michael Biebl <biebl@debian.org> | 2023-02-10 11:51:50 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2023-02-10 11:51:50 +0100 |
| commit | 58dddb802071d967ff5731f3333239ead78248e8 (patch) | |
| tree | def9e578e4786f8cbc56ce1b6cabf7670e00ae81 /src/nm-dispatcher | |
| parent | 2c1b7a7ea3c332b4d690c0595ef76c81de1f0cc8 (diff) | |
| parent | 1372848511cb896b80b51ed1a3e9606bd9816631 (diff) | |
Update upstream source from tag 'upstream/1.42.0'
Update to upstream version '1.42.0' with Debian dir 2b9fa2718b2bd34fa58008e335a0d81b87ad57cf
Diffstat (limited to 'src/nm-dispatcher')
| -rw-r--r-- | src/nm-dispatcher/nm-dispatcher.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/nm-dispatcher/nm-dispatcher.c b/src/nm-dispatcher/nm-dispatcher.c index 4cf662c4..80fe40a0 100644 --- a/src/nm-dispatcher/nm-dispatcher.c +++ b/src/nm-dispatcher/nm-dispatcher.c @@ -62,7 +62,7 @@ typedef struct { bool shutdown_quitting; } GlobalData; -GlobalData gl; +static GlobalData gl; typedef struct { Request *request; @@ -1138,25 +1138,25 @@ _initial_setup(int *p_argc, char ***p_argv, GError **error) GOptionContext *opt_ctx; gboolean arg_debug = FALSE; GOptionEntry entries[] = {{ - "debug", - 0, - 0, - G_OPTION_ARG_NONE, - &arg_debug, - "Output to console rather than syslog", - NULL, + "debug", + 0, + 0, + G_OPTION_ARG_NONE, + &arg_debug, + "Output to console rather than syslog", + NULL, }, { - "persist", - 0, - 0, - G_OPTION_ARG_NONE, - &gl.persist, - "Don't quit after a short timeout", - NULL, + "persist", + 0, + 0, + G_OPTION_ARG_NONE, + &gl.persist, + "Don't quit after a short timeout", + NULL, }, { - NULL, + NULL, }}; gboolean success; |