Commit 71b4d59b authored by Eric W. Biederman's avatar Eric W. Biederman Committed by Stephen Hemminger

make the addr argument of ll_addr_n2a const

This avoids build warnings when AF_PACKET support is added
to rt_addr_n2a.
Signed-off-by: default avatar"Eric W. Biederman" <ebiederm@xmission.com>
parent 26dcdf3a
......@@ -22,7 +22,7 @@ int inet_proto_a2n(const char *buf);
const char * ll_type_n2a(int type, char *buf, int len);
const char *ll_addr_n2a(unsigned char *addr, int alen,
const char *ll_addr_n2a(const unsigned char *addr, int alen,
int type, char *buf, int blen);
int ll_addr_a2n(char *lladdr, int len, const char *arg);
......
......@@ -29,7 +29,7 @@
#include "utils.h"
const char *ll_addr_n2a(unsigned char *addr, int alen, int type, char *buf, int blen)
const char *ll_addr_n2a(const unsigned char *addr, int alen, int type, char *buf, int blen)
{
int i;
int l;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment