From f09588ccfac150b9289563276ddfe5f661ee9062 Mon Sep 17 00:00:00 2001 From: Paulo Pizarro Date: Mon, 2 Jul 2012 08:53:43 -0300 Subject: [PATCH] rtnl: Fixed log for the type RTM_GETADDR The connman prints an unknown type when sending a request RTM_GETADDR --- src/rtnl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/rtnl.c b/src/rtnl.c index a6ff84b..4e7ef4d 100644 --- a/src/rtnl.c +++ b/src/rtnl.c @@ -1255,6 +1255,8 @@ static const char *type2string(uint16_t type) return "NEWLINK"; case RTM_DELLINK: return "DELLINK"; + case RTM_GETADDR: + return "GETADDR"; case RTM_NEWADDR: return "NEWADDR"; case RTM_DELADDR: -- 2.7.4