diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-06-12 04:46:01 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-06-14 22:12:25 +0200 |
commit | 7f80fa12c2f4f2a1f0e6bf04a3abd7634f4605ab (patch) | |
tree | a7e783e00cba97694023ddd14e2f83c4ac24e93b /src/network/networkd-link-bus.c | |
parent | network: do not partially update wlan information on failure (diff) | |
download | systemd-7f80fa12c2f4f2a1f0e6bf04a3abd7634f4605ab.tar.xz systemd-7f80fa12c2f4f2a1f0e6bf04a3abd7634f4605ab.zip |
network: add brief comment about reconfiguring interfaces
This also renames link_reconfigure_internal() -> link_reconfigure_impl().
Diffstat (limited to 'src/network/networkd-link-bus.c')
-rw-r--r-- | src/network/networkd-link-bus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/networkd-link-bus.c b/src/network/networkd-link-bus.c index 7be333eac6..50c3f60080 100644 --- a/src/network/networkd-link-bus.c +++ b/src/network/networkd-link-bus.c @@ -667,7 +667,7 @@ int bus_link_method_reconfigure(sd_bus_message *message, void *userdata, sd_bus_ if (r == 0) return 1; /* Polkit will call us back */ - r = link_reconfigure(l, true); + r = link_reconfigure(l, /* force = */ true); if (r < 0) return r; if (r > 0) { |