diff options
author | Tom Gundersen <teg@jklm.no> | 2014-10-29 10:52:07 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-10-29 10:52:07 +0100 |
commit | fcf81a54a4a01349cbc75a9f04d49c6084c4f624 (patch) | |
tree | 10f1be6a70719dedd54e1cbb85b95c0a8133f6ed | |
parent | 0a2478a918763f73de5d1b78ebb1023c31042583 (diff) |
sd-rtnl: mark nested attributes with the NLA_F_NESTED flag
The kernel mostly does not check this, but let's be consisntent and allways set it anyway. Based
on patch from Susant Sahani.
-rw-r--r-- | src/libsystemd/sd-rtnl/rtnl-message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd/sd-rtnl/rtnl-message.c b/src/libsystemd/sd-rtnl/rtnl-message.c index dac3061271..ccef7165b0 100644 --- a/src/libsystemd/sd-rtnl/rtnl-message.c +++ b/src/libsystemd/sd-rtnl/rtnl-message.c @@ -725,7 +725,7 @@ int sd_rtnl_message_open_container(sd_rtnl_message *m, unsigned short type) { if (r < 0) return r; - r = add_rtattr(m, type, NULL, size); + r = add_rtattr(m, type | NLA_F_NESTED, NULL, size); if (r < 0) return r; |