diff options
author | paul <paul> | 2004-06-04 17:58:18 +0000 |
---|---|---|
committer | paul <paul> | 2004-06-04 17:58:18 +0000 |
commit | 5228ad27e2f3abe0ebb69f66607aedc048b94a13 (patch) | |
tree | a65817a03150dbfeb56a1eaceab526f31be1cc1d /bgpd/bgp_mplsvpn.h | |
parent | c2bfbcc38428b53e856617e1da8bbe9f8d2ee2fa (diff) |
2004-06-04 Paul Jakma <paul@dishone.st>
* type mismatch fixes
Diffstat (limited to 'bgpd/bgp_mplsvpn.h')
-rw-r--r-- | bgpd/bgp_mplsvpn.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_mplsvpn.h b/bgpd/bgp_mplsvpn.h index cd861a87..a5f3eb37 100644 --- a/bgpd/bgp_mplsvpn.h +++ b/bgpd/bgp_mplsvpn.h @@ -40,6 +40,6 @@ struct rd_ip void bgp_mplsvpn_init (); int bgp_nlri_parse_vpnv4 (struct peer *, struct attr *, struct bgp_nlri *); u_int32_t decode_label (u_char *); -int str2prefix_rd (u_char *, struct prefix_rd *); -int str2tag (u_char *, u_char *); +int str2prefix_rd (char *, struct prefix_rd *); +int str2tag (char *, u_char *); char *prefix_rd2str (struct prefix_rd *, char *, size_t); |