diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-02-19 09:36:55 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-02-19 09:36:55 +0100 |
commit | 5e1b0ae63726d03fd8399f2236ff1c57f1928f79 (patch) | |
tree | 77c45bde9832b96295a6086abb5365acf712cb37 | |
parent | a8f51c2e2c94387e7dcd95dcb12371b7253847f8 (diff) |
iface: Correct error message
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r-- | iface.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |