This commit is contained in:
parent
9d313cc963
commit
440df640b1
@ -1,17 +0,0 @@
|
||||
--- epan/dissectors/packet-gtp.c
|
||||
+++ epan/dissectors/packet-gtp.c
|
||||
@@ -1594,10 +1594,10 @@
|
||||
}
|
||||
|
||||
_tmp[0] = '\0';
|
||||
- strncat(_tmp, proto_name, COL_MAX_LEN);
|
||||
- strncat(_tmp, " <", COL_MAX_LEN - strlen(_tmp));
|
||||
- strncat(_tmp, cinfo->col_buf[i], COL_MAX_LEN - strlen(_tmp));
|
||||
- strncat(_tmp, ">", COL_MAX_LEN - strlen(_tmp));
|
||||
+ strncat(_tmp, proto_name, COL_MAX_LEN-1);
|
||||
+ strncat(_tmp, " <", COL_MAX_LEN - strlen(_tmp)-1);
|
||||
+ strncat(_tmp, cinfo->col_buf[i], COL_MAX_LEN - strlen(_tmp)-1);
|
||||
+ strncat(_tmp, ">", COL_MAX_LEN - strlen(_tmp)-1);
|
||||
cinfo->col_buf[i][0] = '\0';
|
||||
strncat(cinfo->col_buf[i], _tmp, COL_MAX_LEN);
|
||||
cinfo->col_data[i] = cinfo->col_buf[i];
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ee9d2e7a75bc1ed80ef5faf9debca51ac238996a544f60314b7028f2f3140c22
|
||||
size 13243168
|
3
wireshark-1.0.0.tar.bz2
Normal file
3
wireshark-1.0.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b54713e146a7277cf05f309d3c706884b0e0ef5a7794e48a4251c4e17acd9fd0
|
||||
size 13413951
|
@ -1,3 +1,30 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 2 11:30:51 CEST 2008 - prusnak@suse.cz
|
||||
|
||||
- updated to 1.0.0 \o/
|
||||
* setcurity fixes:
|
||||
o the X.509sat dissector could crash
|
||||
o the Roofnet dissector could crash
|
||||
o the LDAP dissector could crash
|
||||
o the SCCP dissector could crash while using the "decode as" feature
|
||||
* buf fixes:
|
||||
o several SNMP-related bugs have been fixed
|
||||
o several memory-related bugs have been fixed
|
||||
* new protocol support:
|
||||
IEEE 802.15.4, Infiniband, Parallel Redundancy Protocol, RedBack
|
||||
Lawful Intercept, Xcsl
|
||||
* updated protocol support:
|
||||
AFS, ALCAP, ATM, BACapp, CIGI, DCC (renamed from DCCP), DCCP
|
||||
(renamed from DCP), DCERPC SPOOLSS, DCERPC NT, DHCP, DirectPlay,
|
||||
EtherCAT, FIX, GIOP, GTP, H.248, HTTP, ICMPv6, ICQ, IPv6, ISIS,
|
||||
JXTA, NCP, P_Mul, PCAP, PKIX1Explicit, PTP, RADIUS, Roofnet, RTCP,
|
||||
RTMPT, RTP, RX, SABP, SCSI OSD, sFlow, SMPP, SNMP, SSCOP, TAPA,
|
||||
TIPC, TPNCP, UNISTIM, X.25, X.509sat, XML
|
||||
* new and updated capture file support:
|
||||
Hilscher Analyzer
|
||||
- dropped patches:
|
||||
* strncat.patch (obsoleted by update)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 11:38:06 CET 2008 - prusnak@suse.cz
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package wireshark (Version 0.99.8)
|
||||
# spec file for package wireshark (Version 1.0.0)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
@ -18,7 +18,7 @@ License: GPL v2 or later
|
||||
Group: Productivity/Networking/Diagnostic
|
||||
AutoReqProv: on
|
||||
Summary: A Network Traffic Analyser
|
||||
Version: 0.99.8
|
||||
Version: 1.0.0
|
||||
Release: 1
|
||||
Url: http://www.wireshark.org/
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
@ -26,7 +26,6 @@ Source1: %{name}.desktop
|
||||
Source2: %{name}.png
|
||||
Source3: include.filelist
|
||||
Patch0: %{name}-%{version}-help.patch
|
||||
Patch1: %{name}-%{version}-strncat.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Provides: ethereal
|
||||
Obsoletes: ethereal
|
||||
@ -68,6 +67,7 @@ Authors:
|
||||
and many others. For details see /usr/share/doc/packages/ethereal/AUTHORS
|
||||
|
||||
%package devel
|
||||
License: GPL v2 or later
|
||||
Summary: A Network Traffic Analyser
|
||||
Group: Productivity/Networking/Diagnostic
|
||||
AutoReqProv: on
|
||||
@ -114,7 +114,6 @@ Authors:
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0
|
||||
%patch1
|
||||
|
||||
%build
|
||||
# %{suse_update_config -f wiretap .}
|
||||
@ -175,6 +174,30 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_mandir}/man1/idl2wrs*
|
||||
|
||||
%changelog
|
||||
* Wed Apr 02 2008 prusnak@suse.cz
|
||||
- updated to 1.0.0 \o/
|
||||
* setcurity fixes:
|
||||
o the X.509sat dissector could crash
|
||||
o the Roofnet dissector could crash
|
||||
o the LDAP dissector could crash
|
||||
o the SCCP dissector could crash while using the "decode as" feature
|
||||
* buf fixes:
|
||||
o several SNMP-related bugs have been fixed
|
||||
o several memory-related bugs have been fixed
|
||||
* new protocol support:
|
||||
IEEE 802.15.4, Infiniband, Parallel Redundancy Protocol, RedBack
|
||||
Lawful Intercept, Xcsl
|
||||
* updated protocol support:
|
||||
AFS, ALCAP, ATM, BACapp, CIGI, DCC (renamed from DCCP), DCCP
|
||||
(renamed from DCP), DCERPC SPOOLSS, DCERPC NT, DHCP, DirectPlay,
|
||||
EtherCAT, FIX, GIOP, GTP, H.248, HTTP, ICMPv6, ICQ, IPv6, ISIS,
|
||||
JXTA, NCP, P_Mul, PCAP, PKIX1Explicit, PTP, RADIUS, Roofnet, RTCP,
|
||||
RTMPT, RTP, RX, SABP, SCSI OSD, sFlow, SMPP, SNMP, SSCOP, TAPA,
|
||||
TIPC, TPNCP, UNISTIM, X.25, X.509sat, XML
|
||||
* new and updated capture file support:
|
||||
Hilscher Analyzer
|
||||
- dropped patches:
|
||||
* strncat.patch (obsoleted by update)
|
||||
* Thu Feb 28 2008 prusnak@suse.cz
|
||||
- updated to 0.99.8
|
||||
* security fixes
|
||||
@ -416,7 +439,7 @@ rm -rf $RPM_BUILD_ROOT
|
||||
configure arguments; [#115457].
|
||||
* Wed Aug 31 2005 postadal@suse.cz
|
||||
- changed category of desktop file from Monitor to System [#114060]
|
||||
* Mon Aug 29 2005 postadal@suse.cz
|
||||
* Tue Aug 30 2005 postadal@suse.cz
|
||||
- all data moved from /usr/X11R6 to /usr [#112816]
|
||||
- branched devel package and packed includes [#112815]
|
||||
* Wed Jul 27 2005 postadal@suse.cz
|
||||
@ -559,7 +582,7 @@ rm -rf $RPM_BUILD_ROOT
|
||||
* Thu Apr 13 2000 cihlar@suse.cz
|
||||
- upgrade to version 0.8.6
|
||||
- added BuildRoot
|
||||
* Mon Apr 10 2000 bk@suse.de
|
||||
* Tue Apr 11 2000 bk@suse.de
|
||||
- added suse update config macro
|
||||
* Wed Mar 01 2000 choeger@suse.de
|
||||
- new version, 0.8.3
|
||||
|
Loading…
Reference in New Issue
Block a user