Hello community, here is the log from the commit of package icecast checked in at Tue Dec 19 16:58:58 CET 2006. -------- --- icecast/icecast.changes 2006-10-11 17:23:51.000000000 +0200 +++ /mounts/work_src_done/STABLE/icecast/icecast.changes 2006-12-19 15:35:52.000000000 +0100 @@ -1,0 +2,5 @@ +Tue Dec 19 15:35:28 CET 2006 - tiwai@suse.de + +- fix comparison of string literal in cfgfile.c (#226380). + +------------------------------------------------------------------- New: ---- icecast-cfgfile-fix.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ icecast.spec ++++++ --- /var/tmp/diff_new_pack.eFHFn3/_old 2006-12-19 16:58:50.000000000 +0100 +++ /var/tmp/diff_new_pack.eFHFn3/_new 2006-12-19 16:58:50.000000000 +0100 @@ -15,14 +15,15 @@ Prereq: /usr/sbin/useradd /usr/sbin/groupadd %insserv_prereq %fillup_prereq Summary: Audio Streaming Server Version: 2.3.1 -Release: 21 +Release: 44 Group: Productivity/Networking/Web/Servers Autoreqprov: on -License: GPL +License: GNU General Public License (GPL) Url: http://www.icecast.org/ Source: %{name}-%{version}.tar.bz2 Source1: icecast.init Patch: icecast-2.3.1_runas_icecast_user.patch +Patch1: icecast-cfgfile-fix.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -40,6 +41,7 @@ %prep %setup %patch +%patch1 %build %configure @@ -89,6 +91,8 @@ %attr(755,%{name},%{name}) %{_var}/log/%{name} %changelog -n icecast +* Tue Dec 19 2006 - tiwai@suse.de +- fix comparison of string literal in cfgfile.c (#226380). * Wed Oct 11 2006 - tiwai@suse.de - added icecast-2.3.1_runas_icecast_user.patch: run icecast as "icecast" user and group by default ++++++ icecast-cfgfile-fix.diff ++++++ --- src/cfgfile.c-dist 2006-12-19 15:34:30.000000000 +0100 +++ src/cfgfile.c 2006-12-19 15:34:41.000000000 +0100 @@ -159,7 +159,7 @@ void config_clear(ice_config_t *c) if (c->config_filename) free(c->config_filename); - if (c->location && c->location != CONFIG_DEFAULT_LOCATION) + if (c->location && strcmp(c->location, CONFIG_DEFAULT_LOCATION)) xmlFree(c->location); if (c->admin && c->admin != CONFIG_DEFAULT_ADMIN) xmlFree(c->admin); ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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