]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[tcp] Fix comment to match code behaviour
authorMichael Brown <mcb30@ipxe.org>
Fri, 12 Jul 2013 09:15:42 +0000 (11:15 +0200)
committerMichael Brown <mcb30@ipxe.org>
Fri, 12 Jul 2013 09:15:42 +0000 (11:15 +0200)
Reported-by: Thomas Miletich <thomas.miletich@gmail.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/net/tcp.c

index 8432d559d1a6fda03de0bf3cabda12b957d5b062..b97107fc8c3bcaedbbaf74c1d42450318717d727 100644 (file)
@@ -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;