summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-19 00:18:34 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-19 00:18:34 +0000
commitc97eba0befdce75227b5461ba9042ea611ec55df (patch)
tree19892daad19fbd3eb242f92998b31372b865693b
parent9ce24cc300a68f59cab05eebeff5356f7d476e80 (diff)
downloadpx4-nuttx-c97eba0befdce75227b5461ba9042ea611ec55df.tar.gz
px4-nuttx-c97eba0befdce75227b5461ba9042ea611ec55df.tar.bz2
px4-nuttx-c97eba0befdce75227b5461ba9042ea611ec55df.zip
cosmetic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1626 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/net/bind.c6
-rw-r--r--nuttx/net/uip/uip_arp.c2
-rw-r--r--nuttx/net/uip/uip_tcpconn.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/net/bind.c b/nuttx/net/bind.c
index 381a554bb..e0e9676dd 100644
--- a/nuttx/net/bind.c
+++ b/nuttx/net/bind.c
@@ -1,7 +1,7 @@
/****************************************************************************
* net/bind.c
*
- * Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -55,8 +55,8 @@
*
* Description:
* bind() gives the socket 'sockfd' the local address 'addr'. 'addr' is
- * 'addrlen' bytes long. Traditionally, this is called “assigning a name to
- * a socket.” When a socket is created with socket, it exists in a name
+ * 'addrlen' bytes long. Traditionally, this is called "assigning a name to
+ * a socket." When a socket is created with socket, it exists in a name
* space (address family) but has no name assigned.
*
* Parameters:
diff --git a/nuttx/net/uip/uip_arp.c b/nuttx/net/uip/uip_arp.c
index af8cd624c..47ac8ba7f 100644
--- a/nuttx/net/uip/uip_arp.c
+++ b/nuttx/net/uip/uip_arp.c
@@ -2,7 +2,7 @@
* net/uip/uip_arp.c
* Implementation of the ARP Address Resolution Protocol.
*
- * Copyright (C) 2007, 2008, 2009 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Based on uIP which also has a BSD style license:
diff --git a/nuttx/net/uip/uip_tcpconn.c b/nuttx/net/uip/uip_tcpconn.c
index ea8c308af..af61bab46 100644
--- a/nuttx/net/uip/uip_tcpconn.c
+++ b/nuttx/net/uip/uip_tcpconn.c
@@ -1,7 +1,7 @@
/****************************************************************************
* net/uip/uip_tcpconn.c
*
- * Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Large parts of this file were leveraged from uIP logic: