]> git.proxmox.com Git - mirror_frr.git/commitdiff
bgpd: Fix data type
authorDonald Sharp <sharpd@cumulusnetworks.com>
Wed, 11 Apr 2018 13:34:40 +0000 (09:34 -0400)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Wed, 25 Apr 2018 16:39:17 +0000 (12:39 -0400)
The data type for a variable in bgp_ecommunity.c was
a non-standard type and was causing build failures
on some more obscure build targets.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
bgpd/bgp_ecommunity.c

index 10882ad269749779cf41922f74c4aae809918176..4df1b0103392b507b4b17f7effa167215779e45f 100644 (file)
@@ -902,7 +902,7 @@ extern int ecommunity_strip(struct ecommunity *ecom, uint8_t type,
  */
 int ecommunity_del_val(struct ecommunity *ecom, struct ecommunity_val *eval)
 {
-       u_int8_t *p;
+       uint8_t *p;
        int c, found = 0;
 
        /* Make sure specified value exists. */