diff options
Diffstat (limited to 'sys/netgraph/ng_pptpgre.c')
-rw-r--r-- | sys/netgraph/ng_pptpgre.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netgraph/ng_pptpgre.c b/sys/netgraph/ng_pptpgre.c index 50811da..6966919 100644 --- a/sys/netgraph/ng_pptpgre.c +++ b/sys/netgraph/ng_pptpgre.c @@ -669,7 +669,7 @@ bad: a->ato = PPTP_MIN_TIMEOUT; /* Shift packet transmit times in our transmit window */ - ovbcopy(a->timeSent + index + 1, a->timeSent, + bcopy(a->timeSent + index + 1, a->timeSent, sizeof(*a->timeSent) * (PPTP_XMIT_WIN - (index + 1))); /* If we sent an entire window, increase window size by one */ |