24 lines
974 B
Diff
24 lines
974 B
Diff
|
From a821cbb00c3f6e33d99e9e38ec1538a16dd90ce3 Mon Sep 17 00:00:00 2001
|
||
|
From: Tom Gundersen <teg@jklm.no>
|
||
|
Date: Thu, 4 Sep 2014 14:16:56 +0200
|
||
|
Subject: [PATCH] networkd: link - clarify log message when receiving address
|
||
|
for unknown link
|
||
|
|
||
|
---
|
||
|
src/network/networkd-link.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c
|
||
|
index f726e2b570..bcd2e6da51 100644
|
||
|
--- a/src/network/networkd-link.c
|
||
|
+++ b/src/network/networkd-link.c
|
||
|
@@ -1336,7 +1336,7 @@ int link_rtnl_process_address(sd_rtnl *rtnl, sd_rtnl_message *message,
|
||
|
} else {
|
||
|
r = link_get(m, ifindex, &link);
|
||
|
if (r < 0 || !link) {
|
||
|
- log_warning("rtnl: received address for a nonexistent link, ignoring");
|
||
|
+ log_warning("rtnl: received address for a nonexistent link (%d), ignoring", ifindex);
|
||
|
return 0;
|
||
|
}
|
||
|
}
|