diff options
author | Tom Gundersen <teg@jklm.no> | 2014-07-17 16:49:39 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-07-17 22:53:35 +0200 |
commit | 560852ced07a647e2d288ce2932aaf608712867d (patch) | |
tree | 9047b2e2dc0ca27ef54da3ef3efb900b96af0f6e /src/network | |
parent | 962225baa862c2023790b3c7f140d22bac9e801f (diff) |
sd-network: expose 'unmanaged' as a regular state
This is useful to save in the consumer of the lib, unlike ENODATA/EBUSY which
means that the user should wait until a useful state is available.
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/sd-network.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/network/sd-network.c b/src/network/sd-network.c index 1b7518fd94..50e5d9be1f 100644 --- a/src/network/sd-network.c +++ b/src/network/sd-network.c @@ -85,9 +85,7 @@ _public_ int sd_network_get_link_state(unsigned index, char **state) { else if (!s) return -EIO; - if (streq(s, "unmanaged")) - return -EUNATCH; - else if (streq(s, "initializing")) + if (streq(s, "initializing")) return -EBUSY; *state = s; |