diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-05-22 17:52:30 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-05-26 17:22:23 +0200 |
commit | c5f119c06dbf56887709912cf247cc7679ffc411 (patch) | |
tree | acf0cf6d58a18de2a2f1c34fe7aabdd3e8b320c4 /eigrpd/eigrp_update.c | |
parent | Merge pull request #610 from donaldsharp/rpprefixlen (diff) | |
download | frr-c5f119c06dbf56887709912cf247cc7679ffc411.tar.xz frr-c5f119c06dbf56887709912cf247cc7679ffc411.zip |
*: do not take address of packed member
May result in alignment errors on certain platforms
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_update.c')
-rw-r--r-- | eigrpd/eigrp_update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrp_update.c b/eigrpd/eigrp_update.c index 98b2defea..164907885 100644 --- a/eigrpd/eigrp_update.c +++ b/eigrpd/eigrp_update.c @@ -344,7 +344,7 @@ eigrp_update_receive (struct eigrp *eigrp, struct ip *iph, struct eigrp_header * ne->reported_metric = tlv->metric; ne->reported_distance = eigrp_calculate_metrics(eigrp, - &tlv->metric); + tlv->metric); /* * Filtering */ |