You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by je...@apache.org on 2020/05/28 09:16:27 UTC

[incubator-nuttx-apps] branch master updated: webclient: include string.h for strlen

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 415010b  webclient: include string.h for strlen
415010b is described below

commit 415010b7fd5180a9a5ffe567e592113348ee8ad1
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Thu May 28 15:31:46 2020 +0900

    webclient: include string.h for strlen
    
    Instead of relying on indirect namespace pollutions.
---
 netutils/webclient/webclient.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/netutils/webclient/webclient.c b/netutils/webclient/webclient.c
index a26ac6e..ca25998 100644
--- a/netutils/webclient/webclient.c
+++ b/netutils/webclient/webclient.c
@@ -60,6 +60,7 @@
 #include <stdbool.h>
 #include <unistd.h>
 #include <netdb.h>
+#include <string.h>
 #include <strings.h>
 #include <stdlib.h>
 #include <errno.h>