Hello community, here is the log from the commit of package pam_kwallet for openSUSE:Factory checked in at 2017-03-28 15:16:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pam_kwallet (Old) and /work/SRC/openSUSE:Factory/.pam_kwallet.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pam_kwallet" Tue Mar 28 15:16:26 2017 rev:6 rq:482118 version:5.9.4 Changes: -------- --- /work/SRC/openSUSE:Factory/pam_kwallet/pam_kwallet.changes 2017-02-16 17:06:36.442633928 +0100 +++ /work/SRC/openSUSE:Factory/.pam_kwallet.new/pam_kwallet.changes 2017-03-28 15:16:28.614390372 +0200 @@ -1,0 +2,19 @@ +Tue Mar 21 19:21:46 CET 2017 - [email protected] + +- Update to 5.9.4 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.9.4.php +- Changes since 5.9.3: + * None +------------------------------------------------------------------- +Tue Feb 28 19:55:10 CET 2017 - [email protected] + +- Update to 5.9.3 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.9.3.php +- Changes since 5.9.2: + * fix off by one in the socket filename + +------------------------------------------------------------------- Old: ---- kwallet-pam-5.9.2.tar.xz New: ---- kwallet-pam-5.9.4.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pam_kwallet.spec ++++++ --- /var/tmp/diff_new_pack.87PrgL/_old 2017-03-28 15:16:29.154313894 +0200 +++ /var/tmp/diff_new_pack.87PrgL/_new 2017-03-28 15:16:29.154313894 +0200 @@ -17,7 +17,7 @@ Name: pam_kwallet -Version: 5.9.2 +Version: 5.9.4 Release: 0 Summary: A PAM Module for kwallet signing License: LGPL-2.1 and GPL-2.0+ and GPL-3.0 ++++++ kwallet-pam-5.9.2.tar.xz -> kwallet-pam-5.9.4.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwallet-pam-5.9.2/CMakeLists.txt new/kwallet-pam-5.9.4/CMakeLists.txt --- old/kwallet-pam-5.9.2/CMakeLists.txt 2017-02-14 14:20:48.000000000 +0100 +++ new/kwallet-pam-5.9.4/CMakeLists.txt 2017-03-21 14:53:58.000000000 +0100 @@ -1,7 +1,7 @@ project(pam_kwallet) cmake_minimum_required(VERSION 2.8.12) -set(PROJECT_VERSION "5.9.2") +set(PROJECT_VERSION "5.9.4") set(PROJECT_VERSION_MAJOR 5) find_package (ECM 1.2.0 REQUIRED NO_MODULE) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwallet-pam-5.9.2/pam_kwallet.c new/kwallet-pam-5.9.4/pam_kwallet.c --- old/kwallet-pam-5.9.2/pam_kwallet.c 2017-02-14 14:20:48.000000000 +0100 +++ new/kwallet-pam-5.9.4/pam_kwallet.c 2017-03-21 14:53:58.000000000 +0100 @@ -408,16 +408,19 @@ char *fullSocket = NULL; if (socketPath) { size_t needed = snprintf(NULL, 0, "%s/%s_%s%s", socketPath, socketPrefix, userInfo->pw_name, ".socket"); + needed += 1; fullSocket = malloc(needed); snprintf(fullSocket, needed, "%s/%s_%s%s", socketPath, socketPrefix, userInfo->pw_name, ".socket"); } else { socketPath = get_env(pamh, "XDG_RUNTIME_DIR"); if (socketPath) { size_t needed = snprintf(NULL, 0, "%s/%s%s", socketPath, socketPrefix, ".socket"); + needed += 1; fullSocket = malloc(needed); snprintf(fullSocket, needed, "%s/%s%s", socketPath, socketPrefix, ".socket"); } else { size_t needed = snprintf(NULL, 0, "/tmp/%s_%s%s", socketPrefix, userInfo->pw_name, ".socket"); + needed += 1; fullSocket = malloc(needed); snprintf(fullSocket, needed, "/tmp/%s_%s%s", socketPrefix, userInfo->pw_name, ".socket"); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwallet-pam-5.9.2/pam_kwallet_init.desktop.cmake new/kwallet-pam-5.9.4/pam_kwallet_init.desktop.cmake --- old/kwallet-pam-5.9.2/pam_kwallet_init.desktop.cmake 2017-02-14 14:20:48.000000000 +0100 +++ new/kwallet-pam-5.9.4/pam_kwallet_init.desktop.cmake 2017-03-21 14:53:58.000000000 +0100 @@ -35,6 +35,7 @@ Comment=Connect to KWallet PAM socket Comment[ca]=Connecta a un sòcol PAM del KWallet Comment[ca@valencia]=Connecta a un sòcol PAM del KWallet +Comment[cs]=Připojit k socketu Kwallet PAM Comment[da]=Forbind til KWallet PAM-sokkel Comment[de]=Zum KWallet-PAM-Socket verbinden Comment[el]=Σύνδεση με υποδοχή KWallet PAM
