summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2015-02-19 09:36:55 +0100
committerTobias Klauser <tklauser@distanz.ch>2015-02-19 09:36:55 +0100
commit5e1b0ae63726d03fd8399f2236ff1c57f1928f79 (patch)
tree77c45bde9832b96295a6086abb5365acf712cb37
parenta8f51c2e2c94387e7dcd95dcb12371b7253847f8 (diff)
iface: Correct error message
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r--iface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iface.c b/iface.c
index 5d0117e..51395db 100644
--- a/iface.c
+++ b/iface.c
@@ -282,7 +282,7 @@ static int iface_rtnl_enumerate(int sock, int type, int family)
req.r.rtgen_family = family;
if (send(sock, &req, req.n.nlmsg_len, 0) < 0) {
- log_err("Failed to send initial RTM_GETADDR request: %s\n", strerror(errno));
+ log_err("Failed to send netlink enumeration message: %s\n", strerror(errno));
return -1;
}