From 5228ad27e2f3abe0ebb69f66607aedc048b94a13 Mon Sep 17 00:00:00 2001 From: paul Date: Fri, 4 Jun 2004 17:58:18 +0000 Subject: 2004-06-04 Paul Jakma * type mismatch fixes --- bgpd/bgp_mplsvpn.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'bgpd/bgp_mplsvpn.c') diff --git a/bgpd/bgp_mplsvpn.c b/bgpd/bgp_mplsvpn.c index e820cabf..90219cfe 100644 --- a/bgpd/bgp_mplsvpn.c +++ b/bgpd/bgp_mplsvpn.c @@ -180,13 +180,13 @@ bgp_nlri_parse_vpnv4 (struct peer *peer, struct attr *attr, } int -str2prefix_rd (u_char *str, struct prefix_rd *prd) +str2prefix_rd (char *str, struct prefix_rd *prd) { int ret; - u_char *p; - u_char *p2; + char *p; + char *p2; struct stream *s; - u_char *half; + char *half; struct in_addr addr; s = stream_new (8); @@ -236,7 +236,7 @@ str2prefix_rd (u_char *str, struct prefix_rd *prd) } int -str2tag (u_char *str, u_char *tag) +str2tag (char *str, u_char *tag) { u_int32_t l; -- cgit v1.2.1