summaryrefslogtreecommitdiff
path: root/apps/netutils/telnetd
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-13 16:24:28 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-13 16:24:28 -0600
commit43ec94a665e13552402ff4f102e0f65f6792cf29 (patch)
tree05da26d1bb5e364c1a388afd54630d5ae3ca4aa7 /apps/netutils/telnetd
parent70b6bb22af51defd713adfd452309f32f0e523aa (diff)
downloadnuttx-43ec94a665e13552402ff4f102e0f65f6792cf29.tar.gz
nuttx-43ec94a665e13552402ff4f102e0f65f6792cf29.tar.bz2
nuttx-43ec94a665e13552402ff4f102e0f65f6792cf29.zip
More trailing whilespace removal
Diffstat (limited to 'apps/netutils/telnetd')
-rw-r--r--apps/netutils/telnetd/Makefile4
-rw-r--r--apps/netutils/telnetd/telnetd.h6
-rw-r--r--apps/netutils/telnetd/telnetd_daemon.c2
-rw-r--r--apps/netutils/telnetd/telnetd_driver.c6
4 files changed, 9 insertions, 9 deletions
diff --git a/apps/netutils/telnetd/Makefile b/apps/netutils/telnetd/Makefile
index 129162aca..99caf425f 100644
--- a/apps/netutils/telnetd/Makefile
+++ b/apps/netutils/telnetd/Makefile
@@ -40,7 +40,7 @@ include $(APPDIR)/Make.defs
# Telnet daemon
ASRCS =
-CSRCS =
+CSRCS =
ifeq ($(CONFIG_NET_TCP),y)
CSRCS += telnetd_daemon.c telnetd_driver.c
@@ -66,7 +66,7 @@ ROOTDEPPATH = --dep-path .
# Common build
-VPATH =
+VPATH =
all: .built
.PHONY: context depend clean distclean
diff --git a/apps/netutils/telnetd/telnetd.h b/apps/netutils/telnetd/telnetd.h
index 957c6c550..0d0d69cac 100644
--- a/apps/netutils/telnetd/telnetd.h
+++ b/apps/netutils/telnetd/telnetd.h
@@ -63,7 +63,7 @@ struct telnetd_s
* connection is accepted. */
};
-/* This structure is used to passed information to telnet daemon when it
+/* This structure is used to passed information to telnet daemon when it
* started. It contains global information visable to all telnet daemons.
*/
@@ -80,7 +80,7 @@ struct telnetd_common_s
* Public Data
****************************************************************************/
-/* This structure is used to passed information to telnet daemon when it
+/* This structure is used to passed information to telnet daemon when it
* started. It contains global information visable to all telnet daemons.
*/
@@ -105,7 +105,7 @@ extern struct telnetd_common_s g_telnetdcommon;
* Return:
* An allocated string represent the full path to the created driver. The
* receiver of the string must de-allocate this memory when it is no longer
- * needed. NULL is returned on a failure.
+ * needed. NULL is returned on a failure.
*
****************************************************************************/
diff --git a/apps/netutils/telnetd/telnetd_daemon.c b/apps/netutils/telnetd/telnetd_daemon.c
index aea9eb483..24c11bef4 100644
--- a/apps/netutils/telnetd/telnetd_daemon.c
+++ b/apps/netutils/telnetd/telnetd_daemon.c
@@ -70,7 +70,7 @@
* Public Data
****************************************************************************/
-/* This structure is used to passed information to telnet daemon when it
+/* This structure is used to passed information to telnet daemon when it
* started.
*/
diff --git a/apps/netutils/telnetd/telnetd_driver.c b/apps/netutils/telnetd/telnetd_driver.c
index 7f87b8c70..f189d5613 100644
--- a/apps/netutils/telnetd/telnetd_driver.c
+++ b/apps/netutils/telnetd/telnetd_driver.c
@@ -136,7 +136,7 @@ static void telnetd_sendopt(FAR struct telnetd_dev_s *priv, uint8_t option,
uint8_t value);
/* Character driver methods */
-
+
static int telnetd_open(FAR struct file *filep);
static int telnetd_close(FAR struct file *filep);
static ssize_t telnetd_read(FAR struct file *, FAR char *, size_t);
@@ -181,7 +181,7 @@ static inline void telnetd_dumpbuffer(FAR const char *msg,
/* CONFIG_DEBUG, CONFIG_DEBUG_VERBOSE, and CONFIG_DEBUG_NET have to be
* defined or the following does nothing.
*/
-
+
nvdbgdumpbuffer(msg, (FAR const uint8_t*)buffer, nbytes);
}
#endif
@@ -741,7 +741,7 @@ static int telnetd_poll(FAR struct file *filep, FAR struct pollfd *fds,
* Return:
* An allocated string represent the full path to the created driver. The
* receiver of the string must de-allocate this memory when it is no longer
- * needed. NULL is returned on a failure.
+ * needed. NULL is returned on a failure.
*
****************************************************************************/