git: 9front

Download patch

ref: f315e872e8cf46149e7493a535920691fcad931c
parent: 80811b7d925e82c1641da2edd35dde41c8f874e2
author: rodri <rgl@antares-labs.eu>
date: Sun Mar 5 10:50:04 EST 2023

ip(3): corrections to Udphdr field descriptions

--- a/sys/man/3/ip
+++ b/sys/man/3/ip
@@ -883,8 +883,8 @@
 typedef struct Udphdr Udphdr;
 struct Udphdr
 {
-	uchar	raddr[16];	/* V6 remote address and port */
-	uchar	laddr[16];	/* V6 local address and port */
+	uchar	raddr[16];	/* V6 remote address */
+	uchar	laddr[16];	/* V6 local address */
 	uchar	ifcaddr[16];	/* V6 interface address (receive only) */
 	uchar	rport[2];	/* remote port */
 	uchar	lport[2];	/* local port */
--