From af1e3b9d32f8e320da57dec00ffda102e50677ef Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Fri, 21 Apr 2017 15:07:24 +0300 Subject: [PATCH] net: shell: Fix compiler error when printing conn handlers There was compiler error if CONFIG_NET_DEBUG_CONN was set. Change-Id: Ibb6721c55dd2c56cd0097359a53563c6221859ea Signed-off-by: Jukka Rissanen --- subsys/net/ip/net_shell.c | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/net/ip/net_shell.c b/subsys/net/ip/net_shell.c index ffc6a90ce7f..bf9f51c0d15 100644 --- a/subsys/net/ip/net_shell.c +++ b/subsys/net/ip/net_shell.c @@ -21,6 +21,7 @@ #include "route.h" #include "icmpv6.h" #include "icmpv4.h" +#include "connection.h" #if defined(CONFIG_NET_TCP) #include "tcp.h"