You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/04/03 05:53:13 UTC

[incubator-nuttx] branch master updated: esp32: Fix small typo that will trigger an error when IPv6 is enabled

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 18f88c3  esp32: Fix small typo that will trigger an error when IPv6 is enabled
18f88c3 is described below

commit 18f88c35fc2773d841aca1e4ab9755ff6736d4b2
Author: Alan C. Assis <ac...@gmail.com>
AuthorDate: Fri Apr 2 21:53:05 2021 -0300

    esp32: Fix small typo that will trigger an error when IPv6 is enabled
---
 arch/xtensa/src/esp32/esp32_wlan.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/xtensa/src/esp32/esp32_wlan.c b/arch/xtensa/src/esp32/esp32_wlan.c
index ac82f2e..705edf9 100644
--- a/arch/xtensa/src/esp32/esp32_wlan.c
+++ b/arch/xtensa/src/esp32/esp32_wlan.c
@@ -1207,7 +1207,7 @@ static int wlan_ifup(FAR struct net_driver_s *dev)
         (dev->d_ipaddr >> 16) & 0xff, dev->d_ipaddr >> 24);
 #endif
 #ifdef CONFIG_NET_IPv6
-  winfo("Bringing up: %04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
+  ninfo("Bringing up: %04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
         dev->d_ipv6addr[0], dev->d_ipv6addr[1], dev->d_ipv6addr[2],
         dev->d_ipv6addr[3], dev->d_ipv6addr[4], dev->d_ipv6addr[5],
         dev->d_ipv6addr[6], dev->d_ipv6addr[7]);