From: Paulo Pizarro Date: Mon, 2 Jul 2012 11:53:43 +0000 (-0300) Subject: rtnl: Fixed log for the type RTM_GETADDR X-Git-Tag: 1.3~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f09588ccfac150b9289563276ddfe5f661ee9062;p=platform%2Fupstream%2Fconnman.git rtnl: Fixed log for the type RTM_GETADDR The connman prints an unknown type when sending a request RTM_GETADDR --- 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: