diff options
Diffstat (limited to 'net/zebra/files/patch-ospf')
-rw-r--r-- | net/zebra/files/patch-ospf | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/zebra/files/patch-ospf b/net/zebra/files/patch-ospf new file mode 100644 index 000000000000..00e2f798bed0 --- /dev/null +++ b/net/zebra/files/patch-ospf @@ -0,0 +1,11 @@ +--- ospfd/ospf_packet.c.original Thu May 19 14:22:55 2005 ++++ ospfd/ospf_packet.c Thu May 19 14:23:32 2005 +@@ -270,7 +270,7 @@ + ospfh = (struct ospf_header *) ibuf; + + /* Get pointer to the end of the packet. */ +- pdigest = ibuf + length; ++ pdigest = (unsigned char *)ibuf + length; + + /* Get secret key. */ + ck = ospf_crypt_key_lookup (OSPF_IF_PARAM (oi, auth_crypt), |