Summary: cscope is an interactive, screen-oriented tool that allows the user to browse through C source files for specified elements of code. Name: cscope Version: 15.6 Release: 1 Epoch: 1 License: BSD Group: Development/Tools Source: cscope-15.6.tar.gz URL: http://cscope.sourceforge.net Buildroot: %{_tmppath}/%{name}-root %description cscope is an interactive, screen-oriented tool that allows the user to browse through C source files for specified elements of code. %prep %setup -q %build %configure make %install rm -rf %{buildroot} %makeinstall %clean rm -rf %{buildroot} %files %defattr(-,root,root) %doc TODO COPYING ChangeLog AUTHORS README NEWS INSTALL %{_bindir}/* %{_mandir}/man1/* %changelog * Sun Oct 01 2006 Hans-Bernhard Broeker - Changed version number to 15.6 * Sun Mar 21 2004 Adam Monsen - updated packages/cscope.spec to use more RPM macros and shell globs. Should be more generic/robust/up-to-date/etc. * Mon Jul 2 2001 Cscope development team - Version 15.3 release - New flex scanner - XEmacs support improvements - Vim support improvements - 64 bit fixes - MSDOS support - More editing keys - Webcscope added to contrib * Wed Nov 20 2000 Cscope development team - Version 15.1 release - New menu and line matching interface - Support for up to 62 (up from 9) matching lines on screen - Numerous fixes - Updated documentation * Tue May 15 2000 Cscope development team - Version 15.0bl2 (build 2) pre-alpha release - Fixes and enhancements - Updated documentation - Autoconf/automake support - directory restructuring * Sun Apr 16 2000 Petr Sorfa - Initial Open Source release - Ported to GNU environment - Created rpm package 061c82e4a1bc6a5e134ef362c86261906c860'>commitdiff
diff options
context:
space:
mode:
authorThorsten Horstmann <thorsten@defutech.de>2017-02-03 14:38:29 +0100
committerJohannes Berg <johannes.berg@intel.com>2017-02-06 07:55:44 +0100
commitda7061c82e4a1bc6a5e134ef362c86261906c860 (patch)
tree204908ceb455847239a4287c066809a6c2ebda8e
parent01fba20b5976e445676febbdf6dc78d71c6d7b62 (diff)
mac80211: Fix adding of mesh vendor IEs
The function ieee80211_ie_split_vendor doesn't return 0 on errors. Instead it returns any offset < ielen when WLAN_EID_VENDOR_SPECIFIC is found. The return value in mesh_add_vendor_ies must therefore be checked against ifmsh->ie_len and not 0. Otherwise all ifmsh->ie starting with WLAN_EID_VENDOR_SPECIFIC will be rejected. Fixes: 082ebb0c258d ("mac80211: fix mesh beacon format") Signed-off-by: Thorsten Horstmann <thorsten@defutech.de> Signed-off-by: Mathias Kretschmer <mathias.kretschmer@fit.fraunhofer.de> Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de> [sven@narfation.org: Add commit message] Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
-rw-r--r--net/mac80211/mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/mesh.c b/net/mac80211/mesh.c