david/ipxe
Archived
1
0

Minor edit in net/udp.c

This commit is contained in:
Nikhil Chandru Rao 2006-07-19 16:27:54 +00:00
parent ab577e1a3a
commit bf515d3d65

View File

@ -114,7 +114,7 @@ int udp_buf_alloc ( struct udp_connection *conn, size_t len ) {
* callback. The callback may use the buffer space
*/
int udp_senddata ( struct udp_connection *conn ) {
conn->tx_pkb = pkb_alloc ( UDP_MAX_TXPKB );
conn->tx_pkb = alloc_pkb ( UDP_MAX_TXPKB );
if ( conn->tx_pkb == NULL ) {
DBG ( "Error allocating packet buffer of length %d\n",
UDP_MAX_TXPKB );