diff options
| author | Michael Biebl <biebl@debian.org> | 2025-11-17 17:43:40 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2025-11-17 17:43:40 +0100 |
| commit | 011dff458e636aa67883e9216c01a2956637412b (patch) | |
| tree | 7af8b848e31c5a8b4c0b59045851997c93110fbd /examples | |
| parent | c03c7fe2f566abd8e670a250678bd2cb74ddd693 (diff) | |
| parent | 01609e485803fa250413385ae209660fb7b30a2e (diff) | |
Update upstream source from tag 'upstream/1.54.2'
Update to upstream version '1.54.2' with Debian dir 52dd9a929b2c60328a1676c62037220d9c4a42f6
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/C/glib/monitor-nm-state-gdbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/C/glib/monitor-nm-state-gdbus.c b/examples/C/glib/monitor-nm-state-gdbus.c index 927c966c..9ef8757d 100644 --- a/examples/C/glib/monitor-nm-state-gdbus.c +++ b/examples/C/glib/monitor-nm-state-gdbus.c @@ -23,8 +23,8 @@ static const char * nm_state_to_string(NMState state) { switch (state) { - case NM_STATE_ASLEEP: - return "asleep"; + case NM_STATE_DISABLED: + return "network off"; case NM_STATE_CONNECTING: return "connecting"; case NM_STATE_CONNECTED_LOCAL: |