git: 9front

Download patch

ref: 4cd574b376d1a4433b4619fb5fd0e07824cedb1e
parent: dc1bb91e8516be6dbb2a8cd5964defb18a788e86
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun Sep 17 16:25:18 EDT 2023

devip: fix comment ifc->id -> ifc->ifcid

--- a/sys/src/9/ip/ip.h
+++ b/sys/src/9/ip/ip.h
@@ -583,7 +583,7 @@
 	Route	*left;
 	Route	*right;
 	Ipifc	*ifc;
-	uchar	ifcid;		/* must match ifc->id */
+	uchar	ifcid;		/* must match ifc->ifcid */
 	uchar	depth;
 	ushort	type;
 	char	tag[4];
@@ -660,7 +660,7 @@
 	Block	*hold;
 	Block	*last;
 	Ipifc	*ifc;
-	uchar	ifcid;			/* must match ifc->id */
+	uchar	ifcid;			/* must match ifc->ifcid */
 	uchar	state;
 	uchar	rxtsrem;		/* re-tranmissions remaining */
 	ulong	ctime;			/* time entry was created or refreshed */
--