Browse Source

udp_open() takes ports in network-endian order.

tags/v0.9.3
Michael Brown 18 years ago
parent
commit
0768670fd8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/net/udp/dhcp.c

+ 1
- 1
src/net/udp/dhcp.c View File

540
 			       - sizeof ( dhcp->xid ) ), sizeof ( dhcp->xid ));
540
 			       - sizeof ( dhcp->xid ) ), sizeof ( dhcp->xid ));
541
 
541
 
542
 	/* Bind to local port */
542
 	/* Bind to local port */
543
-	if ( ( rc = udp_open ( &dhcp->udp, BOOTPC_PORT ) ) != 0 ) {
543
+	if ( ( rc = udp_open ( &dhcp->udp, htons ( BOOTPC_PORT ) ) ) != 0 ) {
544
 		async_done ( &dhcp->aop, rc );
544
 		async_done ( &dhcp->aop, rc );
545
 		goto out;
545
 		goto out;
546
 	}
546
 	}

Loading…
Cancel
Save