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/06/16 14:03:29 UTC

[incubator-nuttx-apps] 14/17: netutils: fix relative path CI error

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-apps.git

commit e78ef68927ea0b5a75bf624ef419106b1438d87e
Author: Alin Jerpelea <al...@sony.com>
AuthorDate: Wed Jun 16 10:26:22 2021 +0200

    netutils: fix relative path CI error
    
    error: Path relative to repository other than nuttx must begin with the root directory
    Signed-off-by: Alin Jerpelea <al...@sony.com>
---
 netutils/cjson/Makefile                | 2 +-
 netutils/dhcpc/dhcpc.c                 | 2 +-
 netutils/discover/discover.c           | 2 +-
 netutils/netcat/Kconfig                | 3 +--
 netutils/netcat/Make.defs              | 3 +--
 netutils/netcat/Makefile               | 3 +--
 netutils/netcat/netcat_main.c          | 2 +-
 netutils/netlib/netlib_autoconfig.c    | 2 +-
 netutils/netlib/netlib_ethaddrconv.c   | 2 +-
 netutils/netlib/netlib_ipv4addrconv.c  | 2 +-
 netutils/netlib/netlib_setdripv6addr.c | 2 +-
 netutils/netlib/netlib_setnodeaddr.c   | 2 +-
 netutils/pppd/ipcp.c                   | 2 +-
 netutils/pppd/ipcp.h                   | 2 +-
 netutils/pppd/lcp.c                    | 2 +-
 netutils/pppd/lcp.h                    | 2 +-
 netutils/pppd/pap.c                    | 2 +-
 netutils/pppd/pap.h                    | 2 +-
 netutils/pppd/ppp.c                    | 2 +-
 netutils/pppd/ppp.h                    | 2 +-
 netutils/pppd/ppp_arch.h               | 2 +-
 netutils/pppd/ppp_conf.h               | 2 +-
 netutils/pppd/pppd.c                   | 2 +-
 netutils/thttpd/cgi-src/phf.c          | 2 +-
 netutils/thttpd/cgi-src/redirect.c     | 2 +-
 netutils/thttpd/cgi-src/ssi.c          | 2 +-
 netutils/thttpd/fdwatch.c              | 2 +-
 netutils/thttpd/fdwatch.h              | 2 +-
 netutils/thttpd/libhttpd.c             | 2 +-
 netutils/thttpd/libhttpd.h             | 2 +-
 netutils/thttpd/mime_types.h           | 2 +-
 netutils/thttpd/tdate_parse.c          | 2 +-
 netutils/thttpd/tdate_parse.h          | 2 +-
 netutils/thttpd/thttpd_alloc.c         | 2 +-
 netutils/thttpd/thttpd_alloc.h         | 2 +-
 netutils/thttpd/thttpd_cgi.h           | 2 +-
 netutils/thttpd/thttpd_strings.c       | 2 +-
 netutils/thttpd/thttpd_strings.h       | 2 +-
 netutils/thttpd/timers.c               | 2 +-
 netutils/thttpd/timers.h               | 2 +-
 netutils/webserver/httpd.h             | 2 +-
 netutils/webserver/httpd_cgi.h         | 2 +-
 netutils/webserver/httpd_fs.c          | 2 +-
 43 files changed, 43 insertions(+), 46 deletions(-)

diff --git a/netutils/cjson/Makefile b/netutils/cjson/Makefile
index 4663d46..8bbb1ee 100644
--- a/netutils/cjson/Makefile
+++ b/netutils/cjson/Makefile
@@ -1,5 +1,5 @@
 #############################################################################
-# apps/ netutils/cjson/Makefile
+# apps/netutils/cjson/Makefile
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
 # contributor license agreements.  See the NOTICE file distributed with
diff --git a/netutils/dhcpc/dhcpc.c b/netutils/dhcpc/dhcpc.c
index dd643c0..4a6d091 100644
--- a/netutils/dhcpc/dhcpc.c
+++ b/netutils/dhcpc/dhcpc.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/dhcpc/dhcpc.c
+ * apps/netutils/dhcpc/dhcpc.c
  *
  *   Copyright (C) 2007, 2009, 2011-2012 Gregory Nutt. All rights reserved.
  *   Author: Gregory Nutt <gn...@nuttx.org>
diff --git a/netutils/discover/discover.c b/netutils/discover/discover.c
index 20e36cf..a45699d 100644
--- a/netutils/discover/discover.c
+++ b/netutils/discover/discover.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/discover/discover.c
+ * apps/netutils/discover/discover.c
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
diff --git a/netutils/netcat/Kconfig b/netutils/netcat/Kconfig
index 78dd306..4317069 100644
--- a/netutils/netcat/Kconfig
+++ b/netutils/netcat/Kconfig
@@ -1,6 +1,5 @@
 #############################################################################
-#
-# netutils/netcat/Kconfig
+# apps/netutils/netcat/Kconfig
 # netcat networking application
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/netutils/netcat/Make.defs b/netutils/netcat/Make.defs
index 3b92c2f..7e55c35 100644
--- a/netutils/netcat/Make.defs
+++ b/netutils/netcat/Make.defs
@@ -1,6 +1,5 @@
 #############################################################################
-#
-# netutils/netcat/Make.defs
+# apps/netutils/netcat/Make.defs
 # netcat sample networking application
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/netutils/netcat/Makefile b/netutils/netcat/Makefile
index 4a69602..cc09c0c 100644
--- a/netutils/netcat/Makefile
+++ b/netutils/netcat/Makefile
@@ -1,6 +1,5 @@
 #############################################################################
-#
-# netutils/netcat/Makefile
+# apps/netutils/netcat/Makefile
 # Netcat networking application
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/netutils/netcat/netcat_main.c b/netutils/netcat/netcat_main.c
index adc98cc..95c20e2 100644
--- a/netutils/netcat/netcat_main.c
+++ b/netutils/netcat/netcat_main.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/netcat/netcat_main.c
+ * apps/netutils/netcat/netcat_main.c
  * netcat networking application
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/netutils/netlib/netlib_autoconfig.c b/netutils/netlib/netlib_autoconfig.c
index 5c032f6..418625f 100644
--- a/netutils/netlib/netlib_autoconfig.c
+++ b/netutils/netlib/netlib_autoconfig.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/netlib/netlib_autoconfig.c
+ * apps/netutils/netlib/netlib_autoconfig.c
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
diff --git a/netutils/netlib/netlib_ethaddrconv.c b/netutils/netlib/netlib_ethaddrconv.c
index 042135b..0a577cb 100644
--- a/netutils/netlib/netlib_ethaddrconv.c
+++ b/netutils/netlib/netlib_ethaddrconv.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/netlib/netlib.c
+ * apps/netutils/netlib/netlib.c
  * Various uIP library functions.
  *
  *   Copyright (C) 2007, 2009, 2011, 2016 Gregory Nutt. All rights reserved.
diff --git a/netutils/netlib/netlib_ipv4addrconv.c b/netutils/netlib/netlib_ipv4addrconv.c
index 2df8b1c..1341eab 100644
--- a/netutils/netlib/netlib_ipv4addrconv.c
+++ b/netutils/netlib/netlib_ipv4addrconv.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/netlib/netlib_ipv4addrconv.c
+ * apps/netutils/netlib/netlib_ipv4addrconv.c
  *
  *   Copyright (C) 2007, 2009, 2011, 2016 Gregory Nutt. All rights reserved.
  *   Author: Gregory Nutt <gn...@nuttx.org>
diff --git a/netutils/netlib/netlib_setdripv6addr.c b/netutils/netlib/netlib_setdripv6addr.c
index 8ffbb0a..b011c7d 100644
--- a/netutils/netlib/netlib_setdripv6addr.c
+++ b/netutils/netlib/netlib_setdripv6addr.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/netlib/netlib_setdripv6addr.c
+ * apps/netutils/netlib/netlib_setdripv6addr.c
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
diff --git a/netutils/netlib/netlib_setnodeaddr.c b/netutils/netlib/netlib_setnodeaddr.c
index e085830..c7ee90f 100644
--- a/netutils/netlib/netlib_setnodeaddr.c
+++ b/netutils/netlib/netlib_setnodeaddr.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/netlib/netlib_setnodnodeaddr.c
+ * apps/netutils/netlib/netlib_setnodnodeaddr.c
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
diff --git a/netutils/pppd/ipcp.c b/netutils/pppd/ipcp.c
index ad6cc37..965feb4 100644
--- a/netutils/pppd/ipcp.c
+++ b/netutils/pppd/ipcp.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/pppd/ipcp.c
+ * apps/netutils/pppd/ipcp.c
  * PPP IPCP (intrnet protocol) Processor/Handler
  *
  *   Version: 0.1 Original Version Jun 3, 2000
diff --git a/netutils/pppd/ipcp.h b/netutils/pppd/ipcp.h
index 584f1df..d0e2315 100644
--- a/netutils/pppd/ipcp.h
+++ b/netutils/pppd/ipcp.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/pppd/ipcp.h
+ * apps/netutils/pppd/ipcp.h
  * Internet Protocol Control Protocol header file
  *
  *   Version: 0.1 Original Version June 3, 2000
diff --git a/netutils/pppd/lcp.c b/netutils/pppd/lcp.c
index 0626e70..56aaf45 100644
--- a/netutils/pppd/lcp.c
+++ b/netutils/pppd/lcp.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/pppd/lcp.c
+ * apps/netutils/pppd/lcp.c
  * Link Configuration Protocol Handler
  *
  *   Version - 0.1 Original Version June 3, 2000 -
diff --git a/netutils/pppd/lcp.h b/netutils/pppd/lcp.h
index d2236ec..a53a10d 100644
--- a/netutils/pppd/lcp.h
+++ b/netutils/pppd/lcp.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/pppd/lpc.h
+ * apps/netutils/pppd/lpc.h
  * Link Configuration Protocol header file
  *
  *   Version: .1 Original Version June 3, 2000
diff --git a/netutils/pppd/pap.c b/netutils/pppd/pap.c
index aac5da8..9687522 100644
--- a/netutils/pppd/pap.c
+++ b/netutils/pppd/pap.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/pppd/pap.c
+ * apps/netutils/pppd/pap.c
  * PAP processor for the PPP module
  *
  *   Version: 0.1 Original Version Jun 3, 2000
diff --git a/netutils/pppd/pap.h b/netutils/pppd/pap.h
index ce8ac73..402ef0f 100644
--- a/netutils/pppd/pap.h
+++ b/netutils/pppd/pap.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/pppd/pap.h
+ * apps/netutils/pppd/pap.h
  * PAP header file
  *
  *   Version: 0.1 Original Version June 3, 2000
diff --git a/netutils/pppd/ppp.c b/netutils/pppd/ppp.c
index a4412b5..7fb744a 100644
--- a/netutils/pppd/ppp.c
+++ b/netutils/pppd/ppp.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/pppd/ppp.c
+ * apps/netutils/pppd/ppp.c
  * PPP Processor/Handler
  *
  *   Version: 0.1 Original Version Jun 3, 2000
diff --git a/netutils/pppd/ppp.h b/netutils/pppd/ppp.h
index c73d06e..eef96b8 100644
--- a/netutils/pppd/ppp.h
+++ b/netutils/pppd/ppp.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/pppd/ppp.h
+ * apps/netutils/pppd/ppp.h
  * PPP header file
  *
  *   Version: 0.1 Original Version June 3, 2000
diff --git a/netutils/pppd/ppp_arch.h b/netutils/pppd/ppp_arch.h
index 8f83efe..aec2e31 100644
--- a/netutils/pppd/ppp_arch.h
+++ b/netutils/pppd/ppp_arch.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/pppd/ppp_arch.h
+ * apps/netutils/pppd/ppp_arch.h
  *
  *   Copyright (C) 2015 Max Nekludov. All rights reserved.
  *   Author: Max Nekludov <ma...@gmail.com>
diff --git a/netutils/pppd/ppp_conf.h b/netutils/pppd/ppp_conf.h
index 842d33f..7768dff 100644
--- a/netutils/pppd/ppp_conf.h
+++ b/netutils/pppd/ppp_conf.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/pppd/ppp_conf.h
+ * apps/netutils/pppd/ppp_conf.h
  *
  *   Copyright (C) 2015 Max Nekludov. All rights reserved.
  *   Author: Max Nekludov <ma...@gmail.com>
diff --git a/netutils/pppd/pppd.c b/netutils/pppd/pppd.c
index 07870c4..2a1a708 100644
--- a/netutils/pppd/pppd.c
+++ b/netutils/pppd/pppd.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/pppd/pppd.c
+ * apps/netutils/pppd/pppd.c
  *
  *   Copyright (C) 2015 Max Nekludov. All rights reserved.
  *   Author: Max Nekludov <ma...@gmail.com>
diff --git a/netutils/thttpd/cgi-src/phf.c b/netutils/thttpd/cgi-src/phf.c
index e5adee1..c07259b 100644
--- a/netutils/thttpd/cgi-src/phf.c
+++ b/netutils/thttpd/cgi-src/phf.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/cgi-src/phf.c
+ * apps/netutils/thttpd/cgi-src/phf.c
  * Cracker trap
  *
  *   Copyright (C) 2009, 2015 Gregory Nutt. All rights reserved.
diff --git a/netutils/thttpd/cgi-src/redirect.c b/netutils/thttpd/cgi-src/redirect.c
index 70e818a..238163d 100644
--- a/netutils/thttpd/cgi-src/redirect.c
+++ b/netutils/thttpd/cgi-src/redirect.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/cgi-src/redirect.c
+ * apps/netutils/thttpd/cgi-src/redirect.c
  * Simple redirection CGI program
  *
  *   Copyright (C) 2009, 2015 Gregory Nutt. All rights reserved.
diff --git a/netutils/thttpd/cgi-src/ssi.c b/netutils/thttpd/cgi-src/ssi.c
index 45e11e0..bad3fb3 100644
--- a/netutils/thttpd/cgi-src/ssi.c
+++ b/netutils/thttpd/cgi-src/ssi.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/cgi-src/ssi.c
+ * apps/netutils/thttpd/cgi-src/ssi.c
  * Server-side-includes CGI program
  *
  *   Copyright (C) 2009, 2015 Gregory Nutt. All rights reserved.
diff --git a/netutils/thttpd/fdwatch.c b/netutils/thttpd/fdwatch.c
index c071ea6..6d9c5a3 100644
--- a/netutils/thttpd/fdwatch.c
+++ b/netutils/thttpd/fdwatch.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/timers.c
+ * apps/netutils/thttpd/timers.c
  * FD watcher routines for poll()
  *
  *   Copyright (C) 2009 Gregory Nutt. All rights reserved.
diff --git a/netutils/thttpd/fdwatch.h b/netutils/thttpd/fdwatch.h
index 9974259..86a190f 100644
--- a/netutils/thttpd/fdwatch.h
+++ b/netutils/thttpd/fdwatch.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/fdwatch.h
+ * apps/netutils/thttpd/fdwatch.h
  *
  *   Copyright (C) 2009 Gregory Nutt. All rights reserved.
  *   Author: Gregory Nutt <gn...@nuttx.org>
diff --git a/netutils/thttpd/libhttpd.c b/netutils/thttpd/libhttpd.c
index 95e3ff7..1c72d0d 100644
--- a/netutils/thttpd/libhttpd.c
+++ b/netutils/thttpd/libhttpd.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/libhttpd.c
+ * apps/netutils/thttpd/libhttpd.c
  * HTTP Protocol Library
  *
  *   Copyright (C) 2009, 2011, 2013, 2015-2016 Gregory Nutt. All rights reserved.
diff --git a/netutils/thttpd/libhttpd.h b/netutils/thttpd/libhttpd.h
index 0e1a45d..f67802c 100644
--- a/netutils/thttpd/libhttpd.h
+++ b/netutils/thttpd/libhttpd.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/libhttpd.h
+ * apps/netutils/thttpd/libhttpd.h
  * HTTP Protocol Library Definitions
  *
  *   Copyright (C) 2009 Gregory Nutt. All rights reserved.
diff --git a/netutils/thttpd/mime_types.h b/netutils/thttpd/mime_types.h
index b7be5b3..0faf19e 100644
--- a/netutils/thttpd/mime_types.h
+++ b/netutils/thttpd/mime_types.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/mime_types.h
+ * apps/netutils/thttpd/mime_types.h
  * Provides mappings between filename extensions and MIME types and encodings.
  *
  * Based on mime_encodings.txt and mime_types.txt by Jef Poskanser which
diff --git a/netutils/thttpd/tdate_parse.c b/netutils/thttpd/tdate_parse.c
index 6db7e78..474ce17 100644
--- a/netutils/thttpd/tdate_parse.c
+++ b/netutils/thttpd/tdate_parse.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/timers.c
+ * apps/netutils/thttpd/timers.c
  * Parse string dates into internal form, stripped-down version
  *
  *   Copyright (C) 2009 Gregory Nutt. All rights reserved.
diff --git a/netutils/thttpd/tdate_parse.h b/netutils/thttpd/tdate_parse.h
index d040195..7729ad3 100644
--- a/netutils/thttpd/tdate_parse.h
+++ b/netutils/thttpd/tdate_parse.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/fdwatch.h
+ * apps/netutils/thttpd/fdwatch.h
  *
  *   Copyright (C) 2009 Gregory Nutt. All rights reserved.
  *   Author: Gregory Nutt <gn...@nuttx.org>
diff --git a/netutils/thttpd/thttpd_alloc.c b/netutils/thttpd/thttpd_alloc.c
index 2ba50e9..7a411f8 100644
--- a/netutils/thttpd/thttpd_alloc.c
+++ b/netutils/thttpd/thttpd_alloc.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/thttpd_alloc.c
+ * apps/netutils/thttpd/thttpd_alloc.c
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
diff --git a/netutils/thttpd/thttpd_alloc.h b/netutils/thttpd/thttpd_alloc.h
index 386164a..758c58a 100644
--- a/netutils/thttpd/thttpd_alloc.h
+++ b/netutils/thttpd/thttpd_alloc.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/thttpd_alloc.h
+ * apps/netutils/thttpd/thttpd_alloc.h
  *
  *   Copyright (C) 2009 Gregory Nutt. All rights reserved.
  *   Author: Gregory Nutt <gn...@nuttx.org>
diff --git a/netutils/thttpd/thttpd_cgi.h b/netutils/thttpd/thttpd_cgi.h
index 5431156..2640789 100644
--- a/netutils/thttpd/thttpd_cgi.h
+++ b/netutils/thttpd/thttpd_cgi.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/thttpd_cgi.h
+ * apps/netutils/thttpd/thttpd_cgi.h
  * CGI support
  *
  *   Copyright (C) 2009 Gregory Nutt. All rights reserved.
diff --git a/netutils/thttpd/thttpd_strings.c b/netutils/thttpd/thttpd_strings.c
index ee3a6f6..85767c8 100644
--- a/netutils/thttpd/thttpd_strings.c
+++ b/netutils/thttpd/thttpd_strings.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/thttpd_strings.c
+ * apps/netutils/thttpd/thttpd_strings.c
  * HTTP strings
  *
  *   Copyright (C) 2009 Gregory Nutt. All rights reserved.
diff --git a/netutils/thttpd/thttpd_strings.h b/netutils/thttpd/thttpd_strings.h
index 3380b55..5e9737d 100644
--- a/netutils/thttpd/thttpd_strings.h
+++ b/netutils/thttpd/thttpd_strings.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/thttpd_strings.h
+ * apps/netutils/thttpd/thttpd_strings.h
  * HTTP strings
  *
  *   Copyright (C) 2009, 2015 Gregory Nutt. All rights reserved.
diff --git a/netutils/thttpd/timers.c b/netutils/thttpd/timers.c
index 4c77a74..7373f84 100644
--- a/netutils/thttpd/timers.c
+++ b/netutils/thttpd/timers.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/timers.c
+ * apps/netutils/thttpd/timers.c
  * Simple Timer Routines
  *
  *   Copyright (C) 2009 Gregory Nutt. All rights reserved.
diff --git a/netutils/thttpd/timers.h b/netutils/thttpd/timers.h
index b4849a0..6cd98ba 100644
--- a/netutils/thttpd/timers.h
+++ b/netutils/thttpd/timers.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/thttpd/timers.h
+ * apps/netutils/thttpd/timers.h
  * Header file for THTTPD timers package
  *
  *   Copyright (C) 2009 Gregory Nutt. All rights reserved.
diff --git a/netutils/webserver/httpd.h b/netutils/webserver/httpd.h
index a20b7f0..0a28fce 100644
--- a/netutils/webserver/httpd.h
+++ b/netutils/webserver/httpd.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/webserver/httpd.h
+ * apps/netutils/webserver/httpd.h
  *
  *   Copyright (C) 2007, 2009, 2012 Gregory Nutt. All rights reserved.
  *   Author: Gregory Nutt <gn...@nuttx.org>
diff --git a/netutils/webserver/httpd_cgi.h b/netutils/webserver/httpd_cgi.h
index 8c5fb66..2a23664 100644
--- a/netutils/webserver/httpd_cgi.h
+++ b/netutils/webserver/httpd_cgi.h
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/webserver/httpd_cgi.h
+ * apps/netutils/webserver/httpd_cgi.h
  *
  *   Copyright (C) 2007, 2009, 2012 Gregory Nutt. All rights reserved.
  *   Author: Gregory Nutt <gn...@nuttx.org>
diff --git a/netutils/webserver/httpd_fs.c b/netutils/webserver/httpd_fs.c
index 2c21845..fb095c0 100644
--- a/netutils/webserver/httpd_fs.c
+++ b/netutils/webserver/httpd_fs.c
@@ -1,5 +1,5 @@
 /****************************************************************************
- * netutils/webserver/httpd_fs.c
+ * apps/netutils/webserver/httpd_fs.c
  *
  *   Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved.
  *   Author: Gregory Nutt <gn...@nuttx.org>