diff options
author | David Herrmann <dh.herrmann@googlemail.com> | 2015-06-11 18:05:18 +0200 |
---|---|---|
committer | David Herrmann <dh.herrmann@googlemail.com> | 2015-06-11 18:05:18 +0200 |
commit | ed810b68d323a58b6c36fd00d1118699466ca34a (patch) | |
tree | ab20464c078f36c21a7d0ae119ec6ef7141f5f9b /src/core | |
parent | c067b4acef6715050a9fe92d5e16293d06ec69ee (diff) | |
parent | 31710be527104abad7541b122ee10c4560bd14d2 (diff) |
Merge pull request #171 from teg/rtnl-broadcast-2
sd-rtnl: make joining broadcast groups implicit
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/loopback-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loopback-setup.c b/src/core/loopback-setup.c index 63b15c1200..938f3ab068 100644 --- a/src/core/loopback-setup.c +++ b/src/core/loopback-setup.c @@ -70,7 +70,7 @@ int loopback_setup(void) { _cleanup_rtnl_unref_ sd_rtnl *rtnl = NULL; int r; - r = sd_rtnl_open(&rtnl, 0); + r = sd_rtnl_open(&rtnl); if (r < 0) return r; |