From: Michael Brown Date: Fri, 12 Jul 2013 09:15:42 +0000 (+0200) Subject: [tcp] Fix comment to match code behaviour X-Git-Tag: v1.20.1~1497 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4f8e56bb4b4529d8775c13f54f0eda3c1d3b28f;p=thirdparty%2Fipxe.git [tcp] Fix comment to match code behaviour Reported-by: Thomas Miletich Signed-off-by: Michael Brown --- diff --git a/src/net/tcp.c b/src/net/tcp.c index 8432d559d..b97107fc8 100644 --- a/src/net/tcp.c +++ b/src/net/tcp.c @@ -1216,7 +1216,7 @@ static int tcp_rx ( struct io_buffer *iobuf, tcp_dump_flags ( tcp, tcphdr->flags ); DBGC2 ( tcp, "\n" ); - /* If no connection was found, send RST */ + /* If no connection was found, silently drop packet */ if ( ! tcp ) { rc = -ENOTCONN; goto discard;