diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-05-07 08:47:02 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-05-08 08:08:04 -0400 | 
| commit | 57dd86429f3e76c9b4ae6b0a08081f997b46acbe (patch) | |
| tree | 1304c7aac40dce3cec56a7d6a48307298211c3e1 /zebra/rtadv.c | |
| parent | 768e40bde966542dd1a03db5ee41f6e91ffef885 (diff) | |
zebra: Remove enum around ipv6_nd_suppress_ra_status
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/rtadv.c')
| -rw-r--r-- | zebra/rtadv.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/rtadv.c b/zebra/rtadv.c index 0fb3390410..013eb5819c 100644 --- a/zebra/rtadv.c +++ b/zebra/rtadv.c @@ -171,7 +171,7 @@ static int rtadv_recv_packet(struct zebra_vrf *zvrf, int sock, uint8_t *buf,  /* Send router advertisement packet. */  static void rtadv_send_packet(int sock, struct interface *ifp, -			      ipv6_nd_suppress_ra_status stop) +			      enum ipv6_nd_suppress_ra_status stop)  {  	struct msghdr msg;  	struct iovec iov; @@ -1003,7 +1003,7 @@ void rtadv_delete_prefix(struct zebra_if *zif, const struct prefix *p)  }  static void ipv6_nd_suppress_ra_set(struct interface *ifp, -				    ipv6_nd_suppress_ra_status status) +				    enum ipv6_nd_suppress_ra_status status)  {  	struct zebra_if *zif;  	struct zebra_vrf *zvrf;  | 
