Author: He Zhe Origin: upstream, https://github.com/LINBIT/drbd-utils/commit/859151b228 Bug: https://github.com/LINBIT/drbd-utils/pull/4 Bug-Ubuntu: https://launchpad.net/bugs/1866458 Reviewed-By: Rafael David Tinoco Last-Update: 2020-03-09 --- drbd-utils-8.9.10.orig/user/shared/libgenl.h +++ drbd-utils-8.9.10/user/shared/libgenl.h @@ -851,7 +851,7 @@ static inline struct nlattr *nla_nest_st { struct nlattr *start = (struct nlattr *)msg->tail; - if (nla_put(msg, attrtype, 0, NULL) < 0) + if (nla_put(msg, attrtype | NLA_F_NESTED, 0, NULL) < 0) return NULL; return start;