Hello community, here is the log from the commit of package ppp checked in at Tue Dec 19 17:17:27 CET 2006. -------- --- ppp/ppp.changes 2006-09-13 13:12:48.000000000 +0200 +++ /mounts/work_src_done/STABLE/ppp/ppp.changes 2006-12-19 10:37:27.000000000 +0100 @@ -1,0 +2,5 @@ +Tue Dec 19 10:37:21 CET 2006 - meissner@suse.de + +- fixed strncat usage in radius plugin. + +------------------------------------------------------------------- New: ---- ppp-2.4.4-strncatfix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ppp.spec ++++++ --- /var/tmp/diff_new_pack.cfqgyO/_old 2006-12-19 17:13:01.000000000 +0100 +++ /var/tmp/diff_new_pack.cfqgyO/_new 2006-12-19 17:13:01.000000000 +0100 @@ -14,8 +14,8 @@ BuildRequires: libpcap linux-atm-devel pam-devel URL: http://www.samba.org/ppp/ Version: 2.4.4 -Release: 7 -License: LGPL, BSD +Release: 25 +License: BSD License and BSD-like, Other License(s), see package Group: Productivity/Networking/PPP Autoreqprov: on Provides: ppp_ssl @@ -64,6 +64,7 @@ Patch16: ppp-2.4.3-no-strict-aliasing.patch Patch17: ppp-2.4.3-strip.diff Patch18: ppp-2.4.3-winbind-setuidfix.patch +Patch19: ppp-2.4.4-strncatfix.patch %description The ppp package contains the PPP (Point-to-Point Protocol) daemon, @@ -124,6 +125,7 @@ %patch16 %patch17 %patch18 +%patch19 -p1 %build %if %suse_version > 1000 @@ -177,6 +179,8 @@ /usr/include/pppd %changelog -n ppp +* Tue Dec 19 2006 - meissner@suse.de +- fixed strncat usage in radius plugin. * Wed Sep 13 2006 - hvogel@suse.de - Argh, really re-enable the patch. * Thu Sep 07 2006 - hvogel@suse.de @@ -266,9 +270,9 @@ - fixed ctl-c bug * Fri Feb 13 2004 - arvin@suse.de - updated to version 2.4.2, main features: -- new upstream PPPoE plugin implementation -- new upstream MPPE implementation -- many protocols (CHAP, CBCP, EAP, ECP) added or updated + - new upstream PPPoE plugin implementation + - new upstream MPPE implementation + - many protocols (CHAP, CBCP, EAP, ECP) added or updated - build package as non-root user - build sub-package ppp-devel with header files required for extra plugins ++++++ ppp-2.4.4-strncatfix.patch ++++++ --- ppp-2.4.4/pppd/plugins/radius/clientid.c.xx 2006-12-19 10:25:19.000000000 +0100 +++ ppp-2.4.4/pppd/plugins/radius/clientid.c 2006-12-19 10:25:45.000000000 +0100 @@ -110,7 +110,7 @@ if (*name != '/') strcpy(ttyname, "/dev/"); - strncat(ttyname, name, sizeof(ttyname)); + strncat(ttyname, name, sizeof(ttyname)-strlen(ttyname)-1); for(p = map2id_list; p; p = p->next) if (!strcmp(ttyname, p->name)) return p->id; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@suse.de