From 200cf245c4ed43d8e2a37484cdbc36f5fbfa1ac9 Mon Sep 17 00:00:00 2001 From: Marek Majkowski Date: Tue, 31 Dec 2019 16:49:30 +0100 Subject: netstack: minor fix typo in "if err" handler --- pkg/tcpip/sample/tun_tcp_connect/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/tcpip/sample/tun_tcp_connect') diff --git a/pkg/tcpip/sample/tun_tcp_connect/main.go b/pkg/tcpip/sample/tun_tcp_connect/main.go index 2239c1e66..0ab089208 100644 --- a/pkg/tcpip/sample/tun_tcp_connect/main.go +++ b/pkg/tcpip/sample/tun_tcp_connect/main.go @@ -164,7 +164,7 @@ func main() { // Create TCP endpoint. var wq waiter.Queue ep, e := s.NewEndpoint(tcp.ProtocolNumber, ipv4.ProtocolNumber, &wq) - if err != nil { + if e != nil { log.Fatal(e) } -- cgit v1.2.3