From d4f8e56bb4b4529d8775c13f54f0eda3c1d3b28f Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Fri, 12 Jul 2013 11:15:42 +0200 Subject: [PATCH] [tcp] Fix comment to match code behaviour Reported-by: Thomas Miletich Signed-off-by: Michael Brown --- src/net/tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;