diff --git a/examples/nettest/nettest.c b/examples/nettest/nettest.c index 8bfe73ca60..e509786009 100644 --- a/examples/nettest/nettest.c +++ b/examples/nettest/nettest.c @@ -1,7 +1,7 @@ /**************************************************************************** * examples/nettest/nettest.c * - * Copyright (C) 2007 Gregory Nutt. All rights reserved. + * Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -14,7 +14,7 @@ * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. - * 3. Neither the name Gregory Nutt nor the names of its contributors may be + * 3. Neither the name NuttX nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/examples/nettest/nettest.h b/examples/nettest/nettest.h index fafe293558..b5b6191758 100644 --- a/examples/nettest/nettest.h +++ b/examples/nettest/nettest.h @@ -1,7 +1,7 @@ /**************************************************************************** * examples/nettest/nettest.h * - * Copyright (C) 2007 Gregory Nutt. All rights reserved. + * Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -14,7 +14,7 @@ * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. - * 3. Neither the name Gregory Nutt nor the names of its contributors may be + * 3. Neither the name NuttX nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/include/net/uip/uip-arch.h b/include/net/uip/uip-arch.h index c0044fdfe9..80e574efa5 100644 --- a/include/net/uip/uip-arch.h +++ b/include/net/uip/uip-arch.h @@ -2,7 +2,7 @@ * uip-arch.h * Defines architecture-specific device driver interfaces to uIP * - * Copyright (C) 2007 Gregory Nutt. All rights reserved. + * Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Derived largely from portions of uIP with has a similar BSD-styple license: diff --git a/include/net/uip/uip.h b/include/net/uip/uip.h index bc79f64e73..640ac07fc2 100644 --- a/include/net/uip/uip.h +++ b/include/net/uip/uip.h @@ -5,7 +5,7 @@ * are used by uIP programs as well as internal uIP structures and function * declarations. * - * Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved. + * Copyright (C) 2007, 2008, 2009 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * This logic was leveraged from uIP which also has a BSD-style license: diff --git a/include/netinet/in.h b/include/netinet/in.h index 163e16ab1a..7e7acf9540 100644 --- a/include/netinet/in.h +++ b/include/netinet/in.h @@ -1,7 +1,7 @@ /**************************************************************************** * netinet/in.h * - * Copyright (C) 2007 Gregory Nutt. All rights reserved. + * Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -14,7 +14,7 @@ * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. - * 3. Neither the name Gregory Nutt nor the names of its contributors may be + * 3. Neither the name NuttX nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/include/netinet/ip.h b/include/netinet/ip.h index 3b607bcf66..3d20c12494 100644 --- a/include/netinet/ip.h +++ b/include/netinet/ip.h @@ -1,7 +1,7 @@ /**************************************************************************** * netinet/ip.h * - * Copyright (C) 2007 Gregory Nutt. All rights reserved. + * Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -14,7 +14,7 @@ * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. - * 3. Neither the name Gregory Nutt nor the names of its contributors may be + * 3. Neither the name NuttX nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/lib/lib_htonl.c b/lib/lib_htonl.c index 0f6cbf2242..9419197099 100644 --- a/lib/lib_htonl.c +++ b/lib/lib_htonl.c @@ -1,7 +1,7 @@ /************************************************************ * lib_ntohl.c * - * Copyright (C) 2007 Gregory Nutt. All rights reserved. + * Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -14,7 +14,7 @@ * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. - * 3. Neither the name Gregory Nutt nor the names of its contributors may be + * 3. Neither the name NuttX nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/lib/lib_htons.c b/lib/lib_htons.c index ee173c0e2b..cee422436b 100644 --- a/lib/lib_htons.c +++ b/lib/lib_htons.c @@ -1,7 +1,7 @@ /*************************************************************************** * lib_htons.c * - * Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved. + * Copyright (C) 2007, 2008, 2009 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -53,7 +53,7 @@ uint16 htons(uint16 hs) return HTONS(hs); } -uint16 ntohs (uint16 ns) +uint16 ntohs(uint16 ns) { #ifdef CONFIG_ENDIAN_BIG return ns;