[SLOF] [PATCH] libnet/ipv6: assign times_asked value directly
Nikunj A Dadhania
nikunj at linux.vnet.ibm.com
Fri Sep 15 14:34:36 AEST 2017
times_asked value remains same as the structure is zeroed, but it makes more
sense to do that directly instead of adding with previous value.
Signed-off-by: Nikunj A Dadhania <nikunj at linux.vnet.ibm.com>
---
lib/libnet/ipv6.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/libnet/ipv6.c b/lib/libnet/ipv6.c
index 62a444e..6c6fb54 100644
--- a/lib/libnet/ipv6.c
+++ b/lib/libnet/ipv6.c
@@ -543,7 +543,7 @@ int send_ipv6(int fd, void* buffer, int len)
memset(n, 0, sizeof(struct neighbor));
memcpy(&(n->ip.addr[0]), &ip_dst, 16);
n->status = NB_PROBE;
- n->times_asked += 1;
+ n->times_asked = 1;
neighbor_add(n);
}
--
2.9.3
More information about the SLOF
mailing list