Skip to content

Commit 15cdaee

Browse files
committed
network: fix an error log
1 parent 1cc84f3 commit 15cdaee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/network/netdev/bridge.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ static int netdev_bridge_post_create(NetDev *netdev, Link *link, sd_netlink_mess
4747

4848
r = sd_netlink_message_open_container(req, IFLA_LINKINFO);
4949
if (r < 0)
50-
return log_netdev_error_errno(netdev, r, "Could not append IFLA_PROTINFO attribute: %m");
50+
return log_netdev_error_errno(netdev, r, "Could not append IFLA_LINKINFO attribute: %m");
5151

5252
r = sd_netlink_message_open_container_union(req, IFLA_INFO_DATA, netdev_kind_to_string(netdev->kind));
5353
if (r < 0)

0 commit comments

Comments
 (0)