diff --git a/ChangeLog b/ChangeLog index 356771d532..becf0c0c63 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5780,4 +5780,6 @@ * net/send.c and net_sendfile.c: Reset the send timeout when the data is ACKed, not when the data is sent. Remove concitions on checking for timeout. From Max Holtzberg (2013-10-17). + * net/net_sendfile.c: Correct paramter passed to netdev_txnotify() + from Max Holtzberg (2013-10-17). diff --git a/net/net_sendfile.c b/net/net_sendfile.c index 7ec214b744..2b5f6b2116 100644 --- a/net/net_sendfile.c +++ b/net/net_sendfile.c @@ -535,7 +535,7 @@ ssize_t net_sendfile(int outfd, struct file *infile, off_t *offset, /* Notify the device driver of the availaibilty of TX data */ - netdev_txnotify(&conn->ripaddr); + netdev_txnotify(conn->ripaddr); uip_lockedwait(&state.snd_sem); }