Hello community, here is the log from the commit of package diald checked in at Thu Dec 14 18:08:31 CET 2006. -------- --- diald/diald.changes 2006-01-25 21:35:28.000000000 +0100 +++ /mounts/work_src_done/STABLE/diald/diald.changes 2006-12-14 17:39:06.000000000 +0100 @@ -1,0 +2,5 @@ +Thu Dec 14 17:38:56 CET 2006 - prusnak@suse.cz + +- moved assignement out of the FD_SET macro (fd_set.diff) + +------------------------------------------------------------------- New: ---- diald-1.0-fd_set.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ diald.spec ++++++ --- /var/tmp/diff_new_pack.vE3wNa/_old 2006-12-14 18:07:00.000000000 +0100 +++ /var/tmp/diff_new_pack.vE3wNa/_new 2006-12-14 18:07:00.000000000 +0100 @@ -5,7 +5,7 @@ # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # -# Please submit bugfixes or comments via http://bugs.opensuse.org +# Please submit bugfixes or comments via http://bugs.opensuse.org/ # # norootforbuild @@ -13,12 +13,12 @@ Name: diald BuildRequires: pam-devel tcpd-devel %define diald_top diald-top-2.1pl4 -License: BSD +License: BSD License and BSD-like Group: Hardware/Modem Autoreqprov: on Requires: iproute2 Version: 1.0 -Release: 364 +Release: 396 Summary: Automatic Dialer for PPP and SLIP URL: http://diald.sourceforge.net/ Source0: %{name}-%{version}.tar.bz2 @@ -27,17 +27,18 @@ Patch0: %{name}-%{version}.diff Patch1: %{name}-%{version}-type.diff Patch2: %{diald_top}.diff -Patch3: %name-1.0-uninit-unused.diff -Patch4: %name-1.0-decl.diff -Patch5: %name-CLK_TCK.diff +Patch3: %{name}-%{version}-uninit-unused.diff +Patch4: %{name}-%{version}-decl.diff +Patch5: %{name}-CLK_TCK.diff +Patch6: %{name}-%{version}-fd_set.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: sh-utils fileutils %insserv_prereq %fillup_prereq %description The demand dialing daemon for SLIP and PPP links. It supports demand -dialed links with link timeouts and re-dialing. +dialed links with link time-outs and redialing. -Homepage: http://diald.sourceforge.net/ +Home page: http://diald.sourceforge.net/ FAQ: http://diald.sourceforge.net/FAQ/diald-faq.html @@ -60,6 +61,7 @@ %patch2 %patch3 -p2 %patch4 -p2 +%patch6 -p2 %build cd %{name}-%{version} @@ -135,6 +137,8 @@ %config /etc/init.d/diald %changelog -n diald +* Thu Dec 14 2006 - prusnak@suse.cz +- moved assignement out of the FD_SET macro (fd_set.diff) * Wed Jan 25 2006 - mls@suse.de - converted neededforbuild to BuildRequires * Fri Jan 20 2006 - schwab@suse.de ++++++ diald-1.0-fd_set.diff ++++++ --- diald/diald-top-2.1pl4/client/diald-top.c +++ diald/diald-top-2.1pl4/client/diald-top.c @@ -113,7 +113,8 @@ quit = 0; FD_ZERO(&fd_ctl); FD_SET(0, &fd_ctl); - FD_SET(fd_yyin = fileno(yyin), &fd_ctl); + fd_yyin = fileno(yyin); + FD_SET(fd_yyin, &fd_ctl); signal(SIGTERM, handlesig); signal(SIGINT, handlesig); ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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