Hello community, here is the log from the commit of package smpppd for openSUSE:Factory checked in at 2012-01-13 11:00:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/smpppd (Old) and /work/SRC/openSUSE:Factory/.smpppd.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "smpppd", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/smpppd/smpppd.changes 2011-10-20 14:12:02.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.smpppd.new/smpppd.changes 2012-01-13 11:00:36.000000000 +0100 @@ -1,0 +2,6 @@ +Thu Dec 22 14:26:38 UTC 2011 - [email protected] + +- print debug messages to stderr +- fix dnotify fd's don't survive fork (bnc#734294) + +------------------------------------------------------------------- Old: ---- smpppd-1.60.52.tar.bz2 New: ---- smpppd-1.60.56.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ smpppd.spec ++++++ --- /var/tmp/diff_new_pack.g4i35s/_old 2012-01-13 11:00:42.000000000 +0100 +++ /var/tmp/diff_new_pack.g4i35s/_new 2012-01-13 11:00:42.000000000 +0100 @@ -32,7 +32,7 @@ Group: Productivity/Networking/PPP Summary: SuSE Meta PPP Daemon Requires: ppp /usr/bin/killall -Version: 1.60.52 +Version: 1.60.56 Release: 1 Source0: smpppd-%version.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ smpppd-1.60.52.tar.bz2 -> smpppd-1.60.56.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smpppd-1.60.52/configure new/smpppd-1.60.56/configure --- old/smpppd-1.60.52/configure 2011-10-19 10:56:03.000000000 +0200 +++ new/smpppd-1.60.56/configure 2011-12-22 15:21:10.000000000 +0100 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for smpppd 1.60.52. +# Generated by GNU Autoconf 2.68 for smpppd 1.60.56. # # Report bugs to <http://gitorious.org/opensuse/smpppd>. # @@ -560,8 +560,8 @@ # Identity of this package. PACKAGE_NAME='smpppd' PACKAGE_TARNAME='smpppd' -PACKAGE_VERSION='1.60.52' -PACKAGE_STRING='smpppd 1.60.52' +PACKAGE_VERSION='1.60.56' +PACKAGE_STRING='smpppd 1.60.56' PACKAGE_BUGREPORT='http://gitorious.org/opensuse/smpppd' PACKAGE_URL='' @@ -1270,7 +1270,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures smpppd 1.60.52 to adapt to many kinds of systems. +\`configure' configures smpppd 1.60.56 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1336,7 +1336,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of smpppd 1.60.52:";; + short | recursive ) echo "Configuration of smpppd 1.60.56:";; esac cat <<\_ACEOF @@ -1443,7 +1443,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -smpppd configure 1.60.52 +smpppd configure 1.60.56 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -1737,7 +1737,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by smpppd $as_me 1.60.52, which was +It was created by smpppd $as_me 1.60.56, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -2555,7 +2555,7 @@ # Define the identity of the package. PACKAGE='smpppd' - VERSION='1.60.52' + VERSION='1.60.56' cat >>confdefs.h <<_ACEOF @@ -5363,7 +5363,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by smpppd $as_me 1.60.52, which was +This file was extended by smpppd $as_me 1.60.56, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -5429,7 +5429,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -smpppd config.status 1.60.52 +smpppd config.status 1.60.56 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smpppd-1.60.52/smpppd/lists.cc new/smpppd-1.60.56/smpppd/lists.cc --- old/smpppd-1.60.52/smpppd/lists.cc 2011-05-11 15:45:52.000000000 +0200 +++ new/smpppd-1.60.56/smpppd/lists.cc 2011-12-22 11:30:18.000000000 +0100 @@ -116,7 +116,7 @@ int globret = glob (PROVIDERS_PATH "*", GLOB_MARK | GLOB_NOSORT, 0, &globbuf); if (globret != 0) { - if (globret = GLOB_NOMATCH) + if (globret != GLOB_NOMATCH) fprintf (stderr, "error, glob failed: %m\n"); return; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smpppd-1.60.52/smpppd/smpppd.cc new/smpppd-1.60.56/smpppd/smpppd.cc --- old/smpppd-1.60.52/smpppd/smpppd.cc 2011-05-11 15:38:43.000000000 +0200 +++ new/smpppd-1.60.56/smpppd/smpppd.cc 2011-12-22 11:30:04.000000000 +0100 @@ -1067,16 +1067,16 @@ map <string, string> dummy; startup (dummy); - /* install dnotifier. */ - restate_fd = install_dnotify (SYSCONFIG_STATUS_PATH); - relog_fd = install_dnotify (SYSCONFIG_LOG_PATH); - /* detach. */ if (detach && daemon (0, 0) == -1) { perror("failed to daemonize"); exit(EXIT_FAILURE); } + /* install dnotifier. */ + restate_fd = install_dnotify (SYSCONFIG_STATUS_PATH); + relog_fd = install_dnotify (SYSCONFIG_LOG_PATH); + /* loop forever. */ loop (); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smpppd-1.60.52/smpppd/utils.h new/smpppd-1.60.56/smpppd/utils.h --- old/smpppd-1.60.52/smpppd/utils.h 2009-10-28 10:30:58.000000000 +0100 +++ new/smpppd-1.60.56/smpppd/utils.h 2011-12-22 11:30:18.000000000 +0100 @@ -23,7 +23,7 @@ extern int debug_level; #ifndef NDEBUG -# define dprintf(format,args...) do { if(debug_level) printf (format, ##args); } while (0) +# define dprintf(format,args...) do { if(debug_level) fprintf (stderr, format, ##args); } while (0) #else # define dprintf(format,args...) do { } while (0) #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smpppd-1.60.52/version.m4 new/smpppd-1.60.56/version.m4 --- old/smpppd-1.60.52/version.m4 2011-10-19 10:55:58.000000000 +0200 +++ new/smpppd-1.60.56/version.m4 2011-12-22 15:21:04.000000000 +0100 @@ -1,5 +1,5 @@ define(VERS,[1.60])dnl syscmd(test -e .git)dnl ifelse(sysval, 0,dnl -[define([VERS], VERS[.]esyscmd([LANG=C git rev-list master| wc -l | tr -d '\n']))],dnl +[define([VERS], VERS[.]esyscmd([LANG=C git rev-list --count master ^history | tr -d '\n']))],dnl )dnl -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
