diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2015-03-03 08:55:26 +0100 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-07 08:47:49 -0400 | 
| commit | f2bce9a5b39e9fcd3da3e338ef197fa5109a5010 (patch) | |
| tree | ff4a122377f67330bb9f0650b759c4d7e8217482 /isisd/isis_pfpacket.c | |
| parent | 8ecd32669320500e6d144d079a42183035b0ee4f (diff) | |
*: fix signedness mix-ups
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
(cherry picked from commit 21401f3215be26dcb0f787105f5907745498e966)
Diffstat (limited to 'isisd/isis_pfpacket.c')
| -rw-r--r-- | isisd/isis_pfpacket.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/isisd/isis_pfpacket.c b/isisd/isis_pfpacket.c index 46c8edd68c..2427047b38 100644 --- a/isisd/isis_pfpacket.c +++ b/isisd/isis_pfpacket.c @@ -55,8 +55,8 @@ u_char ALL_L2_ISS[6] = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x15 };  u_char ALL_ISS[6] = { 0x09, 0x00, 0x2B, 0x00, 0x00, 0x05 };  u_char ALL_ESS[6] = { 0x09, 0x00, 0x2B, 0x00, 0x00, 0x04 }; -static char discard_buff[8192]; -static char sock_buff[8192]; +static uint8_t discard_buff[8192]; +static uint8_t sock_buff[8192];  /*   * if level is 0 we are joining p2p multicast  | 
