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_ecommunity.h | |
| parent | c2bfbcc38428b53e856617e1da8bbe9f8d2ee2fa (diff) | |
2004-06-04 Paul Jakma <paul@dishone.st>
        * type mismatch fixes
Diffstat (limited to 'bgpd/bgp_ecommunity.h')
| -rw-r--r-- | bgpd/bgp_ecommunity.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_ecommunity.h b/bgpd/bgp_ecommunity.h index e266471f..e7be7865 100644 --- a/bgpd/bgp_ecommunity.h +++ b/bgpd/bgp_ecommunity.h @@ -47,7 +47,7 @@ struct ecommunity    int size;    /* Extended Communities value.  */ -  u_char *val; +  u_int8_t *val;    /* Human readable format string.  */    char *str; @@ -64,7 +64,7 @@ struct ecommunity_val  void ecommunity_init (void);  void ecommunity_free (struct ecommunity *);  struct ecommunity *ecommunity_new (void); -struct ecommunity *ecommunity_parse (char *, u_short); +struct ecommunity *ecommunity_parse (u_int8_t *, u_short);  struct ecommunity *ecommunity_dup (struct ecommunity *);  struct ecommunity *ecommunity_merge (struct ecommunity *, struct ecommunity *);  struct ecommunity *ecommunity_intern (struct ecommunity *);  | 
