Mailinglist Archive: opensuse-commit (1426 mails)
| < Previous | Next > |
commit iputils
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Tue, 06 Mar 2007 19:08:14 +0100
- Message-id: <20070306180814.E2F4A67816B@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package iputils
checked in at Tue Mar 6 19:08:14 CET 2007.
--------
--- iputils/iputils.changes 2006-12-06 15:26:36.000000000 +0100
+++ /mounts/work_src_done/STABLE/iputils/iputils.changes 2007-03-06 09:15:56.942183000 +0100
@@ -1,0 +2,5 @@
+Tue Mar 6 09:14:02 CET 2007 - ms@xxxxxxx
+
+- fixed overbound ttab2 array access (#251195)
+
+-------------------------------------------------------------------
New:
----
iputils-ss021109-traceroute6-ttab.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ iputils.spec ++++++
--- /var/tmp/diff_new_pack.T20199/_old 2007-03-06 19:06:40.000000000 +0100
+++ /var/tmp/diff_new_pack.T20199/_new 2007-03-06 19:06:40.000000000 +0100
@@ -1,7 +1,7 @@
#
# spec file for package iputils (Version ss021109)
#
-# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
@@ -13,7 +13,7 @@
Name: iputils
Summary: IPv4and IPv6 Networking Utilities
Version: ss021109
-Release: 190
+Release: 198
License: BSD License and BSD-like, GNU General Public License (GPL)
Group: Productivity/Networking/Other
Provides: nkitb
@@ -36,6 +36,7 @@
Patch13: %name-HZ.patch
Patch14: %name-%version-ping6_getaddrinfo.patch
Patch15: %name-%version-ping_common.dif
+Patch16: %name-ss021109-traceroute6-ttab.diff
Prefix: %_prefix
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -67,6 +68,7 @@
%patch13
%patch14
%patch15
+%patch16
mkdir linux
touch linux/autoconf.h
@@ -112,7 +114,9 @@
/sbin/in.rdisc
%attr(644,root,root) %_mandir/man8/*
-%changelog -n iputils
+%changelog
+* Tue Mar 06 2007 - ms@xxxxxxx
+- fixed overbound ttab2 array access (#251195)
* Wed Dec 06 2006 - ms@xxxxxxx
- ping_common.c: added check for oversized packages (-s) (#222010)
* Thu Nov 23 2006 - olh@xxxxxxx
++++++ iputils-ss021109-traceroute6-ttab.diff ++++++
--- traceroute6.c 2007-03-06 09:02:55.000000000 +0100
+++ traceroute6.c 2007-03-06 09:09:48.000000000 +0100
@@ -717,7 +717,7 @@
if (t >= 128 && t <= 132)
{
- return (ttab2[t]);
+ return (ttab2[t-128]);
}
return("OUT-OF-RANGE");
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |