Hello community,

here is the log from the commit of package xl2tpd for openSUSE:Factory checked 
in at 2019-10-17 12:16:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xl2tpd (Old)
 and      /work/SRC/openSUSE:Factory/.xl2tpd.new.2352 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xl2tpd"

Thu Oct 17 12:16:30 2019 rev:23 rq:738118 version:1.3.15

Changes:
--------
--- /work/SRC/openSUSE:Factory/xl2tpd/xl2tpd.changes    2019-04-21 
09:02:05.410459195 +0200
+++ /work/SRC/openSUSE:Factory/.xl2tpd.new.2352/xl2tpd.changes  2019-10-17 
12:16:33.148035840 +0200
@@ -1,0 +2,7 @@
+Sun Oct 13 18:22:24 UTC 2019 - Martin Hauke <mar...@gmx.de>
+
+- Update to version 1.3.15
+  * Specify missing log arguments
+  * Sockopt bug fix for multiple IP's
+
+-------------------------------------------------------------------

Old:
----
  v1.3.14.tar.gz

New:
----
  v1.3.15.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xl2tpd.spec ++++++
--- /var/tmp/diff_new_pack.jSZybM/_old  2019-10-17 12:16:34.000033703 +0200
+++ /var/tmp/diff_new_pack.jSZybM/_new  2019-10-17 12:16:34.000033703 +0200
@@ -22,7 +22,7 @@
 %define rundir /run
 %endif
 Name:           xl2tpd
-Version:        1.3.14
+Version:        1.3.15
 Release:        0
 Summary:        Layer 2 Tunnelling Protocol Daemon (RFC 2661)
 License:        GPL-2.0-only

++++++ v1.3.14.tar.gz -> v1.3.15.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xl2tpd-1.3.14/.travis.yml 
new/xl2tpd-1.3.15/.travis.yml
--- old/xl2tpd-1.3.14/.travis.yml       2019-04-17 18:23:39.000000000 +0200
+++ new/xl2tpd-1.3.15/.travis.yml       2019-10-13 20:06:03.000000000 +0200
@@ -1,9 +1,15 @@
-os:
-  - linux
+matrix:
+  include:
+    - os: linux
+      dist: precise
+    - os: linux
+      dist: xenial
+
 
 language: c
 compiler:
   - gcc
+  - clang
 
 sudo: false
 
@@ -17,10 +23,10 @@
 
 cache:
   directories:
-  - $HOME/.ccache
+    - $HOME/.ccache
 
 before_script:
-    make clean
+  make clean
 
 script:
-    make
+  make
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xl2tpd-1.3.14/CHANGES new/xl2tpd-1.3.15/CHANGES
--- old/xl2tpd-1.3.14/CHANGES   2019-04-17 18:23:39.000000000 +0200
+++ new/xl2tpd-1.3.15/CHANGES   2019-10-13 20:06:03.000000000 +0200
@@ -1,3 +1,13 @@
+v1.3.15 (October 13, 2019)
+* Fix spacing of CONTRIBUTION.md [Samir Hussain]
+* Add CONTRIBUTION.md [Samir Hussain]
+* Specify missing log arguments [Patch by github user: 川島和津実]
+* Use matrix for .travis.yaml to test for multiple Linux distro [Samir Hussain]
+* Fixing .travis.yaml spacing warning [Samir Hussain]
+* Sockopt bug fix for multiple IP's [JDTX]
+* Add Clang as compiler test for travis [Samir Hussain]
+* Add info on building and installing xl2tpd [Samir Hussain]
+
 v1.3.14 (April 17, 2019)
 * osport.h: replace SUSv3-specific functions by POSIX variants [Fabrice 
Fontaine]
 * avp: Error Code field in Result Code AVP is optional [Pau Espin Pedrol]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xl2tpd-1.3.14/CONTRIBUTION.md 
new/xl2tpd-1.3.15/CONTRIBUTION.md
--- old/xl2tpd-1.3.14/CONTRIBUTION.md   1970-01-01 01:00:00.000000000 +0100
+++ new/xl2tpd-1.3.15/CONTRIBUTION.md   2019-10-13 20:06:03.000000000 +0200
@@ -0,0 +1,44 @@
+# Contributing to xl2tpd
+
+First of, thank you for taking the time to contribute.
+
+*Before spending a lot of time on something, please ask for feedback on your
+idea first!* You can ask in the [mailing 
list](https://lists.openswan.org/cgi-bin/mailman/listinfo/xl2tpd)
+or create an [issue](https://github.com/xelerance/xl2tpd/issues).
+
+This project welcomes contribution from the community! Here are a few
+suggestions:
+
+* Update the [ipv6 branch](https://github.com/xelerance/xl2tpd/tree/ipv6).
+  It needs to be tested and updated (it has diverged from master quite a bit).
+* Test and fix up the [libevent 
branch](https://github.com/xelerance/xl2tpd/tree/libevent).
+  There have been reports of crashes. They need to be investigated.  User can
+  get more information with the custom  *--debug-signals* and
+  *--debug-libevent* option (which is only in this branch)
+
+## **Did you find a bug?**
+
+To report a security issue please send an e-mail to secur...@xelerance.com
+
+For non-security problems, ensure the bug was not already reported by
+searching on GitHub under 
"[Issues](https://github.com/xelerance/xl2tpd/issues)"
+and "[Pull requests](https://github.com/xelerance/xl2tpd/pulls)".
+
+When reporting an issue, please provide output and the content of the logs.
+
+## **Did you write a patch that fixes a bug?**
+
+* Open a new GitHub pull request with the patch.
+* Ensure the PR description clearly describes the problem and solution.
+  Include the relevant issue number if applicable.
+* Always write a clear log message for your commits. One-line messages are
+  fine for small changes, but bigger changes should look like this:
+
+    $ git commit -m "A brief summary of the commit
+    >
+    > A paragraph describing what changed and its impact."
+
+    $ git commit -m "A brief summary of the commit
+    >
+    > A paragraph describing what changed and its impact."
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xl2tpd-1.3.14/Makefile.ver 
new/xl2tpd-1.3.15/Makefile.ver
--- old/xl2tpd-1.3.14/Makefile.ver      2019-04-17 18:23:39.000000000 +0200
+++ new/xl2tpd-1.3.15/Makefile.ver      2019-10-13 20:06:03.000000000 +0200
@@ -1 +1 @@
-XL2TPDVERSION=1.3.14
+XL2TPDVERSION=1.3.15
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xl2tpd-1.3.14/README.md new/xl2tpd-1.3.15/README.md
--- old/xl2tpd-1.3.14/README.md 2019-04-17 18:23:39.000000000 +0200
+++ new/xl2tpd-1.3.15/README.md 2019-10-13 20:06:03.000000000 +0200
@@ -33,7 +33,6 @@
     make
     sudo make install
 
-
 ## Mailing Lists
 
 https://lists.openswan.org/cgi-bin/mailman/listinfo/xl2tpd is home of the 
mailing list.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xl2tpd-1.3.14/l2tp.h new/xl2tpd-1.3.15/l2tp.h
--- old/xl2tpd-1.3.14/l2tp.h    2019-04-17 18:23:39.000000000 +0200
+++ new/xl2tpd-1.3.15/l2tp.h    2019-10-13 20:06:03.000000000 +0200
@@ -59,7 +59,7 @@
 #define CONTROL_PIPE_REQ_LNS_REMOVE 'w'     /* Get status of LNS */
 
 #define BINARY "xl2tpd"
-#define SERVER_VERSION "xl2tpd-1.3.14"
+#define SERVER_VERSION "xl2tpd-1.3.15"
 #define VENDOR_NAME "xelerance.com"
 #ifndef PPPD
 #define PPPD           "/usr/sbin/pppd"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xl2tpd-1.3.14/network.c new/xl2tpd-1.3.15/network.c
--- old/xl2tpd-1.3.14/network.c 2019-04-17 18:23:39.000000000 +0200
+++ new/xl2tpd-1.3.15/network.c 2019-10-13 20:06:03.000000000 +0200
@@ -86,7 +86,7 @@
     else
     {
         arg=1;
-        if(setsockopt(server_socket, IPPROTO_IP, gconfig.sarefnum,  &arg, 
sizeof(arg)) != 0) {
+        if(setsockopt(server_socket, IPPROTO_IP, gconfig.sarefnum,  &arg, 
sizeof(arg)) != 0 && !gconfig.forceuserspace) {
             l2tp_log(LOG_CRIT, "setsockopt recvref[%d]: %s\n", 
gconfig.sarefnum, strerror(errno));
             gconfig.ipsecsaref=0;
         }
@@ -643,7 +643,7 @@
                 if (gconfig.debug_tunnel)
                 l2tp_log (LOG_DEBUG,
                     "%s: no such call %d on tunnel %d.  Sending special ZLB\n",
-                    __FUNCTION__);
+                    __FUNCTION__, call, tunnel);
                 if(1==handle_special (buf, c, call)) {
                     buf = new_buf (MAX_RECV_SIZE);
                 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xl2tpd-1.3.14/packaging/fedora/xl2tpd.spec 
new/xl2tpd-1.3.15/packaging/fedora/xl2tpd.spec
--- old/xl2tpd-1.3.14/packaging/fedora/xl2tpd.spec      2019-04-17 
18:23:39.000000000 +0200
+++ new/xl2tpd-1.3.15/packaging/fedora/xl2tpd.spec      2019-10-13 
20:06:03.000000000 +0200
@@ -1,6 +1,6 @@
 Summary: Layer 2 Tunnelling Protocol Daemon (RFC 2661)
 Name: xl2tpd
-Version: 1.3.14
+Version: 1.3.15
 Release: 1%{?dist}
 License: GPLv2
 Url: http://www.xelerance.com/software/xl2tpd/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xl2tpd-1.3.14/packaging/openwrt/Makefile 
new/xl2tpd-1.3.15/packaging/openwrt/Makefile
--- old/xl2tpd-1.3.14/packaging/openwrt/Makefile        2019-04-17 
18:23:39.000000000 +0200
+++ new/xl2tpd-1.3.15/packaging/openwrt/Makefile        2019-10-13 
20:06:03.000000000 +0200
@@ -2,7 +2,7 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=xl2tpd
-PKG_VERSION:=1.3.14
+PKG_VERSION:=1.3.15
 PKG_RELEASE:=1
 PKG_MD5SUM:=ab5656eb5a3d1973f7f69b039675332e-NEEDSUPDATING
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xl2tpd-1.3.14/packaging/suse/sles10.spec 
new/xl2tpd-1.3.15/packaging/suse/sles10.spec
--- old/xl2tpd-1.3.14/packaging/suse/sles10.spec        2019-04-17 
18:23:39.000000000 +0200
+++ new/xl2tpd-1.3.15/packaging/suse/sles10.spec        2019-10-13 
20:06:03.000000000 +0200
@@ -1,6 +1,6 @@
 Summary: Layer 2 Tunnelling Protocol Daemon (RFC 2661)
 Name: xl2tpd
-Version: 1.3.14
+Version: 1.3.15
 Release: 1%{?dist}
 License: GPLv2
 Url: http://www.xelerance.com/software/xl2tpd/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xl2tpd-1.3.14/packaging/suse/xl2tpd.spec 
new/xl2tpd-1.3.15/packaging/suse/xl2tpd.spec
--- old/xl2tpd-1.3.14/packaging/suse/xl2tpd.spec        2019-04-17 
18:23:39.000000000 +0200
+++ new/xl2tpd-1.3.15/packaging/suse/xl2tpd.spec        2019-10-13 
20:06:03.000000000 +0200
@@ -1,6 +1,6 @@
 Summary: Layer 2 Tunnelling Protocol Daemon (RFC 2661)
 Name: xl2tpd
-Version: 1.3.14
+Version: 1.3.15
 Release: 1%{?dist}
 License: GPLv2
 Url: http://www.xelerance.com/software/xl2tpd/


Reply via email to