diff options
| author | Nikhil Chandru Rao | 2006-07-19 18:27:54 +0200 |
|---|---|---|
| committer | Nikhil Chandru Rao | 2006-07-19 18:27:54 +0200 |
| commit | bf515d3d65f681b737a1d8fc41cfb3382b6d867c (patch) | |
| tree | 48bc6debfcd18701fc96103597539340ddaaac74 /src | |
| parent | The following edits were made: \ (diff) | |
| download | ipxe-bf515d3d65f681b737a1d8fc41cfb3382b6d867c.tar.gz ipxe-bf515d3d65f681b737a1d8fc41cfb3382b6d867c.tar.xz ipxe-bf515d3d65f681b737a1d8fc41cfb3382b6d867c.zip | |
Minor edit in net/udp.c
Diffstat (limited to 'src')
| -rw-r--r-- | src/net/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/udp.c b/src/net/udp.c index 0fca99a4c..584a0cb9c 100644 --- a/src/net/udp.c +++ b/src/net/udp.c @@ -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 ); |
