summaryrefslogtreecommitdiff
path: root/src/ipcpd/unicast/pff/multipath.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipcpd/unicast/pff/multipath.c')
-rw-r--r--src/ipcpd/unicast/pff/multipath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/unicast/pff/multipath.c b/src/ipcpd/unicast/pff/multipath.c
index b03ce32f..0579b3a0 100644
--- a/src/ipcpd/unicast/pff/multipath.c
+++ b/src/ipcpd/unicast/pff/multipath.c
@@ -191,7 +191,7 @@ int multipath_pff_nhop(struct pff_i * pff_i,
assert(len > 0);
/* Rotate fds left. */
- memcpy(fds, fds + 1, (len - 1) * sizeof(*fds));
+ memmove(fds, fds + 1, (len - 1) * sizeof(*fds));
fds[len - 1] = fd;
pthread_rwlock_unlock(&pff_i->lock);