This is a discussion on [PATCH] Typo in comment in tcp_var.h within the mailing.openbsd.tech forums, part of the OpenBSD category; --> Hey. There's a small typo in a comment in sys/netinet/tcp_var.h: the TCP RFC is 793, not 783. I attached ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hey. There's a small typo in a comment in sys/netinet/tcp_var.h: the TCP RFC is 793, not 783. I attached a patch to change it. Thanks, Kris Katterjohn Index: tcp_var.h ================================================== ================= RCS file: /cvs/src/sys/netinet/tcp_var.h,v retrieving revision 1.80 diff -u -r1.80 tcp_var.h --- tcp_var.h 11 Dec 2005 17:21:53 -0000 1.80 +++ tcp_var.h 31 Jan 2007 14:20:13 -0000 @@ -102,7 +102,7 @@ struct timeout t_delack_to; /* delayed ACK callback */ /* * The following fields are used as in the protocol specification. - * See RFC783, Dec. 1981, page 21. + * See RFC793, Dec. 1981, page 21. */ /* send sequence variables */ tcp_seq snd_una; /* send unacknowledged */ |