changeset 3109:eb7e5d3caa29

* include/sys/param.h: Fix cyg_arc4random() extern. Issue reported by Marwijn Hessel. [ Bugzilla 1001227 ]
author jld
date Thu, 12 May 2011 08:00:58 +0000
parents fac7912b6449
children da8fe69d2ffd
files packages/net/bsd_tcpip/current/ChangeLog packages/net/bsd_tcpip/current/include/sys/param.h
diffstat 2 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/packages/net/bsd_tcpip/current/ChangeLog
+++ b/packages/net/bsd_tcpip/current/ChangeLog
@@ -1,3 +1,8 @@
+2011-05-12  John Dallaway  <john@dallaway.org.uk>
+
+	* include/sys/param.h: Fix cyg_arc4random() extern. Issue reported by
+	Marwijn Hessel. [ Bugzilla 1001227 ]
+
 2011-02-22  Kelvin Lawson  <kelvinl@users.sf.net>
 
 	* src/sys/netinet/if_ether.c: Merge fix from FreeBSD CVS r1.108.
@@ -647,7 +652,7 @@ 2002-02-05  Hugo Tyson  <hmt@redhat.com>
 # ####GPLCOPYRIGHTBEGIN####                                       
 # -------------------------------------------                     
 # This file is part of eCos, the Embedded Configurable Operating System.
-# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc.   
+# Copyright (C) 2000, 2001, 2002, 2010, 2011 Free Software Foundation, Inc.   
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
--- a/packages/net/bsd_tcpip/current/include/sys/param.h
+++ b/packages/net/bsd_tcpip/current/include/sys/param.h
@@ -12,7 +12,7 @@
 // and license included herein.                                 
 //
 // Portions created by the Free Software Foundation are         
-// Copyright (C) 2002 Free Software Foundation, Inc.            
+// Copyright (C) 2002, 2011 Free Software Foundation, Inc.            
 // -------------------------------------------                  
 // ####BSDCOPYRIGHTEND####                                      
 //==========================================================================
@@ -1042,5 +1042,5 @@ if (cyg_net_log_mask & lvl)
 #endif
 
 #endif // _KERNEL
-int extern cyg_arc4random(void);
+extern int cyg_arc4random(void);
 #endif //_SYS_PARAM_H_