Hello community,

here is the log from the commit of package pam-config for openSUSE:Factory 
checked in at 2018-12-19 13:23:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/pam-config (Old)
 and      /work/SRC/openSUSE:Factory/.pam-config.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "pam-config"

Wed Dec 19 13:23:37 2018 rev:78 rq:656756 version:0.96

Changes:
--------
--- /work/SRC/openSUSE:Factory/pam-config/pam-config.changes    2018-04-17 
11:12:45.099820127 +0200
+++ /work/SRC/openSUSE:Factory/.pam-config.new.28833/pam-config.changes 
2018-12-19 13:23:39.349364393 +0100
@@ -1,0 +2,6 @@
+Mon Dec 10 09:44:27 CET 2018 - [email protected]
+
+- Update to version 0.96:
+  * Add missing pam_cracklib options [bsc#1114835]
+
+-------------------------------------------------------------------

Old:
----
  pam-config-0.95.tar.bz2

New:
----
  pam-config-0.96.tar.bz2

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

Other differences:
------------------
++++++ pam-config.spec ++++++
--- /var/tmp/diff_new_pack.nUv0fc/_old  2018-12-19 13:23:39.789363856 +0100
+++ /var/tmp/diff_new_pack.nUv0fc/_new  2018-12-19 13:23:39.789363856 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           pam-config
-Version:        0.95
+Version:        0.96
 Release:        0
 Summary:        Modify common PAM configuration files
 License:        GPL-2.0-only

++++++ pam-config-0.95.tar.bz2 -> pam-config-0.96.tar.bz2 ++++++
++++ 3338 lines of diff (skipped)
++++    retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/NEWS new/pam-config-0.96/NEWS
--- old/pam-config-0.95/NEWS    2018-02-22 16:18:16.000000000 +0100
+++ new/pam-config-0.96/NEWS    2018-12-10 09:04:10.000000000 +0100
@@ -4,6 +4,9 @@
 
 Please enter bug reports into https://bugzilla.suse.com.
 
+Version 0.96
+* Add missing pam_cracklib options [bsc#1114835]
+
 Version 0.95
 * Fix replacing pam_unix2 and pam_pwcheck
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/compile new/pam-config-0.96/compile
--- old/pam-config-0.95/compile 1970-01-01 01:00:00.000000000 +0100
+++ new/pam-config-0.96/compile 2018-12-10 09:03:09.000000000 +0100
@@ -0,0 +1,348 @@
+#! /bin/sh
+# Wrapper for compilers which do not understand '-c -o'.
+
+scriptversion=2016-01-11.22; # UTC
+
+# Copyright (C) 1999-2017 Free Software Foundation, Inc.
+# Written by Tom Tromey <[email protected]>.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program that contains a
+# configuration script generated by Autoconf, you may include it under
+# the same distribution terms that you use for the rest of that program.
+
+# This file is maintained in Automake, please report
+# bugs to <[email protected]> or send patches to
+# <[email protected]>.
+
+nl='
+'
+
+# We need space, tab and new line, in precisely that order.  Quoting is
+# there to prevent tools from complaining about whitespace usage.
+IFS=" ""       $nl"
+
+file_conv=
+
+# func_file_conv build_file lazy
+# Convert a $build file to $host form and store it in $file
+# Currently only supports Windows hosts. If the determined conversion
+# type is listed in (the comma separated) LAZY, no conversion will
+# take place.
+func_file_conv ()
+{
+  file=$1
+  case $file in
+    / | /[!/]*) # absolute file, and not a UNC file
+      if test -z "$file_conv"; then
+       # lazily determine how to convert abs files
+       case `uname -s` in
+         MINGW*)
+           file_conv=mingw
+           ;;
+         CYGWIN*)
+           file_conv=cygwin
+           ;;
+         *)
+           file_conv=wine
+           ;;
+       esac
+      fi
+      case $file_conv/,$2, in
+       *,$file_conv,*)
+         ;;
+       mingw/*)
+         file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
+         ;;
+       cygwin/*)
+         file=`cygpath -m "$file" || echo "$file"`
+         ;;
+       wine/*)
+         file=`winepath -w "$file" || echo "$file"`
+         ;;
+      esac
+      ;;
+  esac
+}
+
+# func_cl_dashL linkdir
+# Make cl look for libraries in LINKDIR
+func_cl_dashL ()
+{
+  func_file_conv "$1"
+  if test -z "$lib_path"; then
+    lib_path=$file
+  else
+    lib_path="$lib_path;$file"
+  fi
+  linker_opts="$linker_opts -LIBPATH:$file"
+}
+
+# func_cl_dashl library
+# Do a library search-path lookup for cl
+func_cl_dashl ()
+{
+  lib=$1
+  found=no
+  save_IFS=$IFS
+  IFS=';'
+  for dir in $lib_path $LIB
+  do
+    IFS=$save_IFS
+    if $shared && test -f "$dir/$lib.dll.lib"; then
+      found=yes
+      lib=$dir/$lib.dll.lib
+      break
+    fi
+    if test -f "$dir/$lib.lib"; then
+      found=yes
+      lib=$dir/$lib.lib
+      break
+    fi
+    if test -f "$dir/lib$lib.a"; then
+      found=yes
+      lib=$dir/lib$lib.a
+      break
+    fi
+  done
+  IFS=$save_IFS
+
+  if test "$found" != yes; then
+    lib=$lib.lib
+  fi
+}
+
+# func_cl_wrapper cl arg...
+# Adjust compile command to suit cl
+func_cl_wrapper ()
+{
+  # Assume a capable shell
+  lib_path=
+  shared=:
+  linker_opts=
+  for arg
+  do
+    if test -n "$eat"; then
+      eat=
+    else
+      case $1 in
+       -o)
+         # configure might choose to run compile as 'compile cc -o foo foo.c'.
+         eat=1
+         case $2 in
+           *.o | *.[oO][bB][jJ])
+             func_file_conv "$2"
+             set x "$@" -Fo"$file"
+             shift
+             ;;
+           *)
+             func_file_conv "$2"
+             set x "$@" -Fe"$file"
+             shift
+             ;;
+         esac
+         ;;
+       -I)
+         eat=1
+         func_file_conv "$2" mingw
+         set x "$@" -I"$file"
+         shift
+         ;;
+       -I*)
+         func_file_conv "${1#-I}" mingw
+         set x "$@" -I"$file"
+         shift
+         ;;
+       -l)
+         eat=1
+         func_cl_dashl "$2"
+         set x "$@" "$lib"
+         shift
+         ;;
+       -l*)
+         func_cl_dashl "${1#-l}"
+         set x "$@" "$lib"
+         shift
+         ;;
+       -L)
+         eat=1
+         func_cl_dashL "$2"
+         ;;
+       -L*)
+         func_cl_dashL "${1#-L}"
+         ;;
+       -static)
+         shared=false
+         ;;
+       -Wl,*)
+         arg=${1#-Wl,}
+         save_ifs="$IFS"; IFS=','
+         for flag in $arg; do
+           IFS="$save_ifs"
+           linker_opts="$linker_opts $flag"
+         done
+         IFS="$save_ifs"
+         ;;
+       -Xlinker)
+         eat=1
+         linker_opts="$linker_opts $2"
+         ;;
+       -*)
+         set x "$@" "$1"
+         shift
+         ;;
+       *.cc | *.CC | *.cxx | *.CXX | *.[cC]++)
+         func_file_conv "$1"
+         set x "$@" -Tp"$file"
+         shift
+         ;;
+       *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO])
+         func_file_conv "$1" mingw
+         set x "$@" "$file"
+         shift
+         ;;
+       *)
+         set x "$@" "$1"
+         shift
+         ;;
+      esac
+    fi
+    shift
+  done
+  if test -n "$linker_opts"; then
+    linker_opts="-link$linker_opts"
+  fi
+  exec "$@" $linker_opts
+  exit 1
+}
+
+eat=
+
+case $1 in
+  '')
+     echo "$0: No command.  Try '$0 --help' for more information." 1>&2
+     exit 1;
+     ;;
+  -h | --h*)
+    cat <<\EOF
+Usage: compile [--help] [--version] PROGRAM [ARGS]
+
+Wrapper for compilers which do not understand '-c -o'.
+Remove '-o dest.o' from ARGS, run PROGRAM with the remaining
+arguments, and rename the output as expected.
+
+If you are trying to build a whole package this is not the
+right script to run: please start by reading the file 'INSTALL'.
+
+Report bugs to <[email protected]>.
+EOF
+    exit $?
+    ;;
+  -v | --v*)
+    echo "compile $scriptversion"
+    exit $?
+    ;;
+  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
+  icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
+    func_cl_wrapper "$@"      # Doesn't return...
+    ;;
+esac
+
+ofile=
+cfile=
+
+for arg
+do
+  if test -n "$eat"; then
+    eat=
+  else
+    case $1 in
+      -o)
+       # configure might choose to run compile as 'compile cc -o foo foo.c'.
+       # So we strip '-o arg' only if arg is an object.
+       eat=1
+       case $2 in
+         *.o | *.obj)
+           ofile=$2
+           ;;
+         *)
+           set x "$@" -o "$2"
+           shift
+           ;;
+       esac
+       ;;
+      *.c)
+       cfile=$1
+       set x "$@" "$1"
+       shift
+       ;;
+      *)
+       set x "$@" "$1"
+       shift
+       ;;
+    esac
+  fi
+  shift
+done
+
+if test -z "$ofile" || test -z "$cfile"; then
+  # If no '-o' option was seen then we might have been invoked from a
+  # pattern rule where we don't need one.  That is ok -- this is a
+  # normal compilation that the losing compiler can handle.  If no
+  # '.c' file was seen then we are probably linking.  That is also
+  # ok.
+  exec "$@"
+fi
+
+# Name of file we expect compiler to create.
+cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
+
+# Create the lock directory.
+# Note: use '[/\\:.-]' here to ensure that we don't use the same name
+# that we are using for the .o file.  Also, base the name on the expected
+# object file name, since that is what matters with a parallel build.
+lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
+while true; do
+  if mkdir "$lockdir" >/dev/null 2>&1; then
+    break
+  fi
+  sleep 1
+done
+# FIXME: race condition here if user kills between mkdir and trap.
+trap "rmdir '$lockdir'; exit 1" 1 2 15
+
+# Run the compile.
+"$@"
+ret=$?
+
+if test -f "$cofile"; then
+  test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
+elif test -f "${cofile}bj"; then
+  test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
+fi
+
+rmdir "$lockdir"
+exit $ret
+
+# Local Variables:
+# mode: shell-script
+# sh-indentation: 2
+# eval: (add-hook 'write-file-hooks 'time-stamp)
+# time-stamp-start: "scriptversion="
+# time-stamp-format: "%:y-%02m-%02d.%02H"
+# time-stamp-time-zone: "UTC0"
+# time-stamp-end: "; # UTC"
+# End:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/configure.ac new/pam-config-0.96/configure.ac
--- old/pam-config-0.95/configure.ac    2018-02-22 16:17:47.000000000 +0100
+++ new/pam-config-0.96/configure.ac    2018-12-10 09:02:55.000000000 +0100
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
-AC_INIT(pam-config, 0.95)
+AC_INIT(pam-config, 0.96)
 AM_INIT_AUTOMAKE
 AC_CONFIG_SRCDIR([src/pam-config.c])
 AM_CONFIG_HEADER(config.h)
Binary files old/pam-config-0.95/po/af.gmo and new/pam-config-0.96/po/af.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/af.po new/pam-config-0.96/po/af.po
--- old/pam-config-0.95/po/af.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/af.po        2018-12-10 09:04:16.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: installation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2006-11-03 14:26\n"
 "Last-Translator: Novell Language <[email protected]>\n"
 "Language-Team: Novell Language <[email protected]>\n"
Binary files old/pam-config-0.95/po/ar.gmo and new/pam-config-0.96/po/ar.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/ar.po new/pam-config-0.96/po/ar.po
--- old/pam-config-0.95/po/ar.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/ar.po        2018-12-10 09:04:16.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2001-07-13 15:36+0200\n"
 "Last-Translator: Ghayss Tarraf <[email protected]>\n"
 "Language-Team: Arabic <[email protected]>\n"
Binary files old/pam-config-0.95/po/bg.gmo and new/pam-config-0.96/po/bg.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/bg.po new/pam-config-0.96/po/bg.po
--- old/pam-config-0.95/po/bg.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/bg.po        2018-12-10 09:04:16.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2009-10-15 15:55+0300\n"
 "Last-Translator: Borislav Mitev <[email protected]>\n"
 "Language-Team: Bulgarian <[email protected]>\n"
Binary files old/pam-config-0.95/po/bn.gmo and new/pam-config-0.96/po/bn.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/bn.po new/pam-config-0.96/po/bn.po
--- old/pam-config-0.95/po/bn.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/bn.po        2018-12-10 09:04:16.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2004-08-09 10:24+0200\n"
 "Last-Translator: xxx <[email protected]>\n"
 "Language-Team: Bengali <[email protected]>\n"
Binary files old/pam-config-0.95/po/bs.gmo and new/pam-config-0.96/po/bs.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/bs.po new/pam-config-0.96/po/bs.po
--- old/pam-config-0.95/po/bs.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/bs.po        2018-12-10 09:04:16.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2002-07-23 18:27+0200\n"
 "Last-Translator: Damir Bjelobradic <[email protected]>\n"
 "Language-Team: Bosnian <[email protected]>\n"
Binary files old/pam-config-0.95/po/ca.gmo and new/pam-config-0.96/po/ca.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/ca.po new/pam-config-0.96/po/ca.po
--- old/pam-config-0.95/po/ca.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/ca.po        2018-12-10 09:04:16.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2002-02-08 15:47+0100\n"
 "Last-Translator: Jaume Badiella <[email protected]>\n"
 "Language-Team: Catalan\n"
Binary files old/pam-config-0.95/po/cs.gmo and new/pam-config-0.96/po/cs.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/cs.po new/pam-config-0.96/po/cs.po
--- old/pam-config-0.95/po/cs.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/cs.po        2018-12-10 09:04:16.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-05-30 12:19+0200\n"
 "Last-Translator: Vojtěch Zeisek <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
Binary files old/pam-config-0.95/po/cy.gmo and new/pam-config-0.96/po/cy.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/cy.po new/pam-config-0.96/po/cy.po
--- old/pam-config-0.95/po/cy.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/cy.po        2018-12-10 09:04:16.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2003-09-23 10:33+0200\n"
 "Last-Translator: Kevin Donnelly <[email protected]>\n"
 "Language-Team: Welsh <[email protected]>\n"
Binary files old/pam-config-0.95/po/da.gmo and new/pam-config-0.96/po/da.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/da.po new/pam-config-0.96/po/da.po
--- old/pam-config-0.95/po/da.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/da.po        2018-12-10 09:04:16.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-05-11 10:34+0200\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
Binary files old/pam-config-0.95/po/de.gmo and new/pam-config-0.96/po/de.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/de.po new/pam-config-0.96/po/de.po
--- old/pam-config-0.95/po/de.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/de.po        2018-12-10 09:04:16.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.de\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2009-08-20 21:23+0200\n"
 "Last-Translator: Hermann-Josef Beckers <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
Binary files old/pam-config-0.95/po/el.gmo and new/pam-config-0.96/po/el.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/el.po new/pam-config-0.96/po/el.po
--- old/pam-config-0.95/po/el.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/el.po        2018-12-10 09:04:16.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.el\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2008-06-06 01:04+0100\n"
 "Last-Translator: Vasileios Giannakopoulos <[email protected]>\n"
 "Language-Team: Ελληνικά <[email protected]>\n"
Binary files old/pam-config-0.95/po/en_GB.gmo and 
new/pam-config-0.96/po/en_GB.gmo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/en_GB.po new/pam-config-0.96/po/en_GB.po
--- old/pam-config-0.95/po/en_GB.po     2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/en_GB.po     2018-12-10 09:04:16.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2007-08-19 15:10+0100\n"
 "Last-Translator: Benjamin Weber <[email protected]>\n"
 "Language-Team:  <[email protected]>\n"
Binary files old/pam-config-0.95/po/en_US.gmo and 
new/pam-config-0.96/po/en_US.gmo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/en_US.po new/pam-config-0.96/po/en_US.po
--- old/pam-config-0.95/po/en_US.po     2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/en_US.po     2018-12-10 09:04:16.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2005-11-08 12:26+8\n"
 "Last-Translator: Steve Beattie <[email protected]>\n"
 "Language-Team: English\n"
Binary files old/pam-config-0.95/po/es.gmo and new/pam-config-0.96/po/es.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/es.po new/pam-config-0.96/po/es.po
--- old/pam-config-0.95/po/es.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/es.po        2018-12-10 09:04:16.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2009-12-28 00:19-0300\n"
 "Last-Translator: Ricardo Varas Santana <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
Binary files old/pam-config-0.95/po/et.gmo and new/pam-config-0.96/po/et.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/et.po new/pam-config-0.96/po/et.po
--- old/pam-config-0.95/po/et.po        2018-02-22 16:18:30.000000000 +0100
+++ new/pam-config-0.96/po/et.po        2018-12-10 09:04:16.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.et\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2007-07-20 09:39+0300\n"
 "Last-Translator: Ain Vagula <[email protected]>\n"
 "Language-Team: Estonian <[email protected]>\n"
Binary files old/pam-config-0.95/po/fi.gmo and new/pam-config-0.96/po/fi.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/fi.po new/pam-config-0.96/po/fi.po
--- old/pam-config-0.95/po/fi.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/fi.po        2018-12-10 09:04:16.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.fi\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-04-10 21:36+0300\n"
 "Last-Translator: Jyri Palokangas <[email protected]>\n"
 "Language-Team: TRANSLATIONS <[email protected]>\n"
Binary files old/pam-config-0.95/po/fr.gmo and new/pam-config-0.96/po/fr.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/fr.po new/pam-config-0.96/po/fr.po
--- old/pam-config-0.95/po/fr.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/fr.po        2018-12-10 09:04:16.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-05-05 21:07+0100\n"
 "Last-Translator: Guillaume GARDET <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
Binary files old/pam-config-0.95/po/gl.gmo and new/pam-config-0.96/po/gl.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/gl.po new/pam-config-0.96/po/gl.po
--- old/pam-config-0.95/po/gl.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/gl.po        2018-12-10 09:04:16.000000000 +0100
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2009-12-02 21:03+0100\n"
 "Last-Translator: Óscar Abilleira Muñiz <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
Binary files old/pam-config-0.95/po/gu.gmo and new/pam-config-0.96/po/gu.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/gu.po new/pam-config-0.96/po/gu.po
--- old/pam-config-0.95/po/gu.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/gu.po        2018-12-10 09:04:16.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: YaST (@memory@)\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2005-07-29 15:37+0530\n"
 "Last-Translator: [email protected]\n"
 "Language-Team: Gujarati <[email protected]>\n"
Binary files old/pam-config-0.95/po/he.gmo and new/pam-config-0.96/po/he.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/he.po new/pam-config-0.96/po/he.po
--- old/pam-config-0.95/po/he.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/he.po        2018-12-10 09:04:16.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2004-08-09 10:24+0200\n"
 "Last-Translator: xxx <[email protected]>\n"
 "Language-Team: Hebrew <[email protected]>\n"
Binary files old/pam-config-0.95/po/hi.gmo and new/pam-config-0.96/po/hi.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/hi.po new/pam-config-0.96/po/hi.po
--- old/pam-config-0.95/po/hi.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/hi.po        2018-12-10 09:04:16.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.hi\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2007-08-24 20:43+0530\n"
 "Last-Translator: Sangeeta Kumari <[email protected]>\n"
 "Language-Team: Hindi <[email protected]>\n"
Binary files old/pam-config-0.95/po/hr.gmo and new/pam-config-0.96/po/hr.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/hr.po new/pam-config-0.96/po/hr.po
--- old/pam-config-0.95/po/hr.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/hr.po        2018-12-10 09:04:16.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2008-06-03 21:52+0100\n"
 "Last-Translator: Krešimir Jozić <[email protected]>\n"
 "Language-Team: Croatian <[email protected]>\n"
Binary files old/pam-config-0.95/po/hu.gmo and new/pam-config-0.96/po/hu.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/hu.po new/pam-config-0.96/po/hu.po
--- old/pam-config-0.95/po/hu.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/hu.po        2018-12-10 09:04:16.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.hu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-03-18 11:40+0100\n"
 "Last-Translator: Kalman Kemenczy <[email protected]>\n"
 "Language-Team: collection <[email protected]>\n"
Binary files old/pam-config-0.95/po/id.gmo and new/pam-config-0.96/po/id.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/id.po new/pam-config-0.96/po/id.po
--- old/pam-config-0.95/po/id.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/id.po        2018-12-10 09:04:16.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2002-10-08 13:38+0200\n"
 "Last-Translator: I Made Wiryana <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
Binary files old/pam-config-0.95/po/it.gmo and new/pam-config-0.96/po/it.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/it.po new/pam-config-0.96/po/it.po
--- old/pam-config-0.95/po/it.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/it.po        2018-12-10 09:04:16.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.it\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-04-08 12:24+0100\n"
 "Last-Translator: Andrea Florio <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
Binary files old/pam-config-0.95/po/ja.gmo and new/pam-config-0.96/po/ja.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/ja.po new/pam-config-0.96/po/ja.po
--- old/pam-config-0.95/po/ja.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/ja.po        2018-12-10 09:04:16.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-03-10 16:13+0900\n"
 "Last-Translator: Yasuhiko Kamata <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
Binary files old/pam-config-0.95/po/ka.gmo and new/pam-config-0.96/po/ka.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/ka.po new/pam-config-0.96/po/ka.po
--- old/pam-config-0.95/po/ka.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/ka.po        2018-12-10 09:04:16.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2005-05-18 10:33+0200\n"
 "Last-Translator: Aiet Kolkhi <[email protected]>\n"
 "Language-Team: Georgian <[email protected]>\n"
Binary files old/pam-config-0.95/po/km.gmo and new/pam-config-0.96/po/km.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/km.po new/pam-config-0.96/po/km.po
--- old/pam-config-0.95/po/km.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/km.po        2018-12-10 09:04:16.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-07-07 10:14+0700\n"
 "Last-Translator: Khoem Sokhem <[email protected]>\n"
 "Language-Team: Khmer <[email protected]>\n"
Binary files old/pam-config-0.95/po/ko.gmo and new/pam-config-0.96/po/ko.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/ko.po new/pam-config-0.96/po/ko.po
--- old/pam-config-0.95/po/ko.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/ko.po        2018-12-10 09:04:16.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.ko\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2009-10-23 02:32+0900\n"
 "Last-Translator: Yunseok Choi <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
Binary files old/pam-config-0.95/po/lo.gmo and new/pam-config-0.96/po/lo.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/lo.po new/pam-config-0.96/po/lo.po
--- old/pam-config-0.95/po/lo.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/lo.po        2018-12-10 09:04:16.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2006-01-04 08:58+0100\n"
 "Last-Translator: [email protected]\n"
 "Language-Team: Lao <[email protected]>\n"
Binary files old/pam-config-0.95/po/lt.gmo and new/pam-config-0.96/po/lt.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/lt.po new/pam-config-0.96/po/lt.po
--- old/pam-config-0.95/po/lt.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/lt.po        2018-12-10 09:04:16.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.lt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-07-29 21:09+0300\n"
 "Last-Translator: Mindaugas Baranauskas <[email protected]>\n"
 "Language-Team: Lithuanian <[email protected]>\n"
Binary files old/pam-config-0.95/po/mk.gmo and new/pam-config-0.96/po/mk.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/mk.po new/pam-config-0.96/po/mk.po
--- old/pam-config-0.95/po/mk.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/mk.po        2018-12-10 09:04:16.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: YaST (@memory@)\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2001-07-17 16:12+0200\n"
 "Last-Translator: Зоран Димовски <[email protected]>\n"
 "Language-Team: Macedonian <[email protected]>\n"
Binary files old/pam-config-0.95/po/mr.gmo and new/pam-config-0.96/po/mr.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/mr.po new/pam-config-0.96/po/mr.po
--- old/pam-config-0.95/po/mr.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/mr.po        2018-12-10 09:04:17.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: YaST (@memory@)\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2005-07-29 15:37+0530\n"
 "Last-Translator: \"( अमेय पाळंदे ) Ameya Palande\" <[email protected]>\n"
 "Language-Team: Marathi <[email protected]>\n"
Binary files old/pam-config-0.95/po/nb.gmo and new/pam-config-0.96/po/nb.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/nb.po new/pam-config-0.96/po/nb.po
--- old/pam-config-0.95/po/nb.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/nb.po        2018-12-10 09:04:17.000000000 +0100
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2008-10-22 21:42+0200\n"
 "Last-Translator: Olav P. <[email protected]>\n"
 "Language-Team: Norwegian Bokmål <>\n"
Binary files old/pam-config-0.95/po/nl.gmo and new/pam-config-0.96/po/nl.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/nl.po new/pam-config-0.96/po/nl.po
--- old/pam-config-0.95/po/nl.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/nl.po        2018-12-10 09:04:17.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.nl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-04-05 11:30+0200\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
Binary files old/pam-config-0.95/po/pa.gmo and new/pam-config-0.96/po/pa.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/pa.po new/pam-config-0.96/po/pa.po
--- old/pam-config-0.95/po/pa.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/pa.po        2018-12-10 09:04:17.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.pa\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2007-08-21 23:07+0530\n"
 "Last-Translator: A S Alam <[email protected]>\n"
 "Language-Team: Panjabi <[email protected]>\n"
Binary files old/pam-config-0.95/po/pl.gmo and new/pam-config-0.96/po/pl.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/pl.po new/pam-config-0.96/po/pl.po
--- old/pam-config-0.95/po/pl.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/pl.po        2018-12-10 09:04:17.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-05-24 03:00+0200\n"
 "Last-Translator: Mariusz Fik <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
Binary files old/pam-config-0.95/po/pt.gmo and new/pam-config-0.96/po/pt.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/pt.po new/pam-config-0.96/po/pt.po
--- old/pam-config-0.95/po/pt.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/pt.po        2018-12-10 09:04:17.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.pt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2008-10-18 22:01+0100\n"
 "Last-Translator: Carlos Gonçalves <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
Binary files old/pam-config-0.95/po/pt_BR.gmo and 
new/pam-config-0.96/po/pt_BR.gmo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/pt_BR.po new/pam-config-0.96/po/pt_BR.po
--- old/pam-config-0.95/po/pt_BR.po     2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/pt_BR.po     2018-12-10 09:04:17.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2009-12-01 16:03-0300\n"
 "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n"
 "Language-Team: Brazilian Portuguese <[email protected]>\n"
Binary files old/pam-config-0.95/po/ro.gmo and new/pam-config-0.96/po/ro.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/ro.po new/pam-config-0.96/po/ro.po
--- old/pam-config-0.95/po/ro.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/ro.po        2018-12-10 09:04:17.000000000 +0100
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: openSUSE\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-04-30 16:32+0300\n"
 "Last-Translator: Lucian Oprea <[email protected]>\n"
 "Language-Team: Comunitatea traducatorilor openSUSE Romania. Contact: <oprea."
Binary files old/pam-config-0.95/po/ru.gmo and new/pam-config-0.96/po/ru.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/ru.po new/pam-config-0.96/po/ru.po
--- old/pam-config-0.95/po/ru.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/ru.po        2018-12-10 09:04:17.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.ru\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-04-10 20:32+0300\n"
 "Last-Translator: Alexander Melentiev <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
Binary files old/pam-config-0.95/po/si.gmo and new/pam-config-0.96/po/si.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/si.po new/pam-config-0.96/po/si.po
--- old/pam-config-0.95/po/si.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/si.po        2018-12-10 09:04:17.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: YaST (@memory@)\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2005-07-29 15:37+0530\n"
 "Last-Translator: [email protected]\n"
 "Language-Team: Sinhala <[email protected]>\n"
Binary files old/pam-config-0.95/po/sk.gmo and new/pam-config-0.96/po/sk.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/sk.po new/pam-config-0.96/po/sk.po
--- old/pam-config-0.95/po/sk.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/sk.po        2018-12-10 09:04:17.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2010-04-23 16:47+0100\n"
 "Last-Translator: Rastislav Krupanský <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
Binary files old/pam-config-0.95/po/sl.gmo and new/pam-config-0.96/po/sl.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/sl.po new/pam-config-0.96/po/sl.po
--- old/pam-config-0.95/po/sl.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/sl.po        2018-12-10 09:04:17.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2005-08-24 17:37+0200\n"
 "Last-Translator: Janez Krek <[email protected]>\n"
 "Language-Team: Slovenščina <[email protected]>\n"
Binary files old/pam-config-0.95/po/sr.gmo and new/pam-config-0.96/po/sr.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/sr.po new/pam-config-0.96/po/sr.po
--- old/pam-config-0.95/po/sr.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/sr.po        2018-12-10 09:04:17.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2005-08-03 21:03+0200\n"
 "Last-Translator: Данило Шеган <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
Binary files old/pam-config-0.95/po/sv.gmo and new/pam-config-0.96/po/sv.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/sv.po new/pam-config-0.96/po/sv.po
--- old/pam-config-0.95/po/sv.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/sv.po        2018-12-10 09:04:17.000000000 +0100
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2008-11-08 17:17+0100\n"
 "Last-Translator: Jonas Björk <[email protected]>\n"
 "Language-Team: svenska <[email protected]>\n"
Binary files old/pam-config-0.95/po/ta.gmo and new/pam-config-0.96/po/ta.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/ta.po new/pam-config-0.96/po/ta.po
--- old/pam-config-0.95/po/ta.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/ta.po        2018-12-10 09:04:17.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2003-08-14 10:47+0200\n"
 "Last-Translator: xxx <[email protected]>\n"
 "Language-Team: Tamil <[email protected]>\n"
Binary files old/pam-config-0.95/po/th.gmo and new/pam-config-0.96/po/th.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/th.po new/pam-config-0.96/po/th.po
--- old/pam-config-0.95/po/th.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/th.po        2018-12-10 09:04:17.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: YaST (@memory@)\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2008-01-04 08:58+0100\n"
 "Last-Translator: [email protected]\n"
 "Language-Team: Thai <[email protected]>\n"
Binary files old/pam-config-0.95/po/tr.gmo and new/pam-config-0.96/po/tr.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/tr.po new/pam-config-0.96/po/tr.po
--- old/pam-config-0.95/po/tr.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/tr.po        2018-12-10 09:04:17.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2001-10-18 10:13+0200\n"
 "Last-Translator: Görkem Çetin <[email protected]>\n"
 "Language-Team: turkish <[email protected]>\n"
Binary files old/pam-config-0.95/po/uk.gmo and new/pam-config-0.96/po/uk.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/uk.po new/pam-config-0.96/po/uk.po
--- old/pam-config-0.95/po/uk.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/uk.po        2018-12-10 09:04:17.000000000 +0100
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: pam-config.uk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2008-10-22 22:51-0700\n"
 "Last-Translator: Ivan Petrouchtchak <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
Binary files old/pam-config-0.95/po/vi.gmo and new/pam-config-0.96/po/vi.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/vi.po new/pam-config-0.96/po/vi.po
--- old/pam-config-0.95/po/vi.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/vi.po        2018-12-10 09:04:17.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2006-07-12 07:32+0200\n"
 "Last-Translator: Phan Vĩnh Thịnh <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
Binary files old/pam-config-0.95/po/wa.gmo and new/pam-config-0.96/po/wa.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/wa.po new/pam-config-0.96/po/wa.po
--- old/pam-config-0.95/po/wa.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/wa.po        2018-12-10 09:04:17.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: yast memory\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2004-04-05 17:37+0200\n"
 "Last-Translator: Jean Cayron <[email protected]>\n"
 "Language-Team: Walloon <[email protected]>\n"
Binary files old/pam-config-0.95/po/xh.gmo and new/pam-config-0.96/po/xh.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/xh.po new/pam-config-0.96/po/xh.po
--- old/pam-config-0.95/po/xh.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/xh.po        2018-12-10 09:04:17.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: base\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2006-11-03 14:26\n"
 "Last-Translator: Novell Language <[email protected]>\n"
 "Language-Team: Novell Language <[email protected]>\n"
Binary files old/pam-config-0.95/po/zh_CN.gmo and 
new/pam-config-0.96/po/zh_CN.gmo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/zh_CN.po new/pam-config-0.96/po/zh_CN.po
--- old/pam-config-0.95/po/zh_CN.po     2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/zh_CN.po     2018-12-10 09:04:17.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2008-12-01 01:33+0800\n"
 "Last-Translator: Thruth Wang <[email protected]>\n"
 "Language-Team: Simplified Chinese\n"
Binary files old/pam-config-0.95/po/zh_TW.gmo and 
new/pam-config-0.96/po/zh_TW.gmo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/zh_TW.po new/pam-config-0.96/po/zh_TW.po
--- old/pam-config-0.95/po/zh_TW.po     2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/zh_TW.po     2018-12-10 09:04:17.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: pam-config\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2009-09-18 21:45+0800\n"
 "Last-Translator: swyear <[email protected]>\n"
 "Language-Team: Chinese Traditional <[email protected]>\n"
Binary files old/pam-config-0.95/po/zu.gmo and new/pam-config-0.96/po/zu.gmo 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/po/zu.po new/pam-config-0.96/po/zu.po
--- old/pam-config-0.95/po/zu.po        2018-02-22 16:18:31.000000000 +0100
+++ new/pam-config-0.96/po/zu.po        2018-12-10 09:04:17.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: installation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-22 16:18+0100\n"
+"POT-Creation-Date: 2018-12-10 09:04+0100\n"
 "PO-Revision-Date: 2006-11-03 14:26\n"
 "Last-Translator: Novell Language <[email protected]>\n"
 "Language-Team: Novell Language <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/src/mod_pam_cracklib.c 
new/pam-config-0.96/src/mod_pam_cracklib.c
--- old/pam-config-0.95/src/mod_pam_cracklib.c  2017-10-20 08:36:08.000000000 
+0200
+++ new/pam-config-0.96/src/mod_pam_cracklib.c  2018-12-10 09:00:59.000000000 
+0100
@@ -1,4 +1,4 @@
-/* Copyright (C) 2007, 2008 Thorsten Kukuk
+/* Copyright (C) 2007, 2008, 2018 Thorsten Kukuk
    Author: Thorsten Kukuk <[email protected]>
 
    This program is free software; you can redistribute it and/or modify
@@ -56,8 +56,8 @@
 PRINT_XMLHELP("cracklib")
 
 /* ---- contruct module object ---- */
-DECLARE_BOOL_OPTS_3(is_enabled, debug, enforce_for_root);
-DECLARE_STRING_OPTS_11(authtok_type, retry, difok, difignore, minlen, dcredit, 
ucredit, lcredit, ocredit, minclass, dictpath);
+DECLARE_BOOL_OPTS_5(is_enabled, debug, reject_username, gecoscheck, 
enforce_for_root);
+DECLARE_STRING_OPTS_14(authtok_type, retry, difok, difignore, minlen, dcredit, 
ucredit, lcredit, ocredit, minclass, dictpath, maxrepeat, maxsequence, 
maxclassrepeat);
 DECLARE_OPT_SETS;
 
 static module_helptext_t helptext[] = {{NULL, NULL, NULL}};
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/src/pam-config.8 new/pam-config-0.96/src/pam-config.8
--- old/pam-config-0.95/src/pam-config.8        2018-02-22 16:18:36.000000000 
+0100
+++ new/pam-config-0.96/src/pam-config.8        2018-12-10 09:03:32.000000000 
+0100
@@ -1,13 +1,13 @@
 '\" t
 .\"     Title: pam-config
 .\"    Author: [see the "AUTHOR" section]
-.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
-.\"      Date: 02/22/2018
+.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
+.\"      Date: 12/10/2018
 .\"    Manual: Reference Manual
 .\"    Source: Reference Manual
 .\"  Language: English
 .\"
-.TH "PAM\-CONFIG" "8" "02/22/2018" "Reference Manual" "Reference Manual"
+.TH "PAM\-CONFIG" "8" "12/10/2018" "Reference Manual" "Reference Manual"
 .\" -----------------------------------------------------------------
 .\" * Define some portability stuff
 .\" -----------------------------------------------------------------
@@ -203,6 +203,20 @@
 option to all pam_cracklib\&.so invocations\&.
 .RE
 .PP
+\fB\-\-cracklib\-reject_username\fR
+.RS 4
+Add
+\fBreject_username\fR
+option to all pam_cracklib\&.so invocations\&.
+.RE
+.PP
+\fB\-\-cracklib\-gecoscheck\fR
+.RS 4
+Add
+\fBgecoscheck\fR
+option to all pam_cracklib\&.so invocations\&.
+.RE
+.PP
 \fB\-\-cracklib\-enforce_for_root\fR
 .RS 4
 Add
@@ -287,6 +301,27 @@
 option to pam_cracklib\&.so\&.
 .RE
 .PP
+\fB\-\-cracklib\-maxrepeat=\fR\fIvalue\fR
+.RS 4
+Add
+\fBmaxrepeat=\fR\fIvalue\fR
+option to pam_cracklib\&.so\&.
+.RE
+.PP
+\fB\-\-cracklib\-maxsequence=\fR\fIvalue\fR
+.RS 4
+Add
+\fBmaxsequence=\fR\fIvalue\fR
+option to pam_cracklib\&.so\&.
+.RE
+.PP
+\fB\-\-cracklib\-maxclassrepeat=\fR\fIvalue\fR
+.RS 4
+Add
+\fBmaxclassrepeat=\fR\fIvalue\fR
+option to pam_cracklib\&.so\&.
+.RE
+.PP
 \fB\-\-ecryptfs\fR
 .RS 4
 Enable/Disable pam_ecryptfs\&.so
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/src/pam-config.8.xml 
new/pam-config-0.96/src/pam-config.8.xml
--- old/pam-config-0.95/src/pam-config.8.xml    2018-02-22 16:18:36.000000000 
+0100
+++ new/pam-config-0.96/src/pam-config.8.xml    2018-12-10 09:03:31.000000000 
+0100
@@ -282,6 +282,22 @@
             </listitem>
           </varlistentry>
           <varlistentry>
+            <term><option>--cracklib-reject_username</option></term>
+            <listitem>
+              <para>
+                Add <option>reject_username</option> option to all 
pam_cracklib.so invocations.
+              </para>
+            </listitem>
+          </varlistentry>
+          <varlistentry>
+            <term><option>--cracklib-gecoscheck</option></term>
+            <listitem>
+              <para>
+                Add <option>gecoscheck</option> option to all pam_cracklib.so 
invocations.
+              </para>
+            </listitem>
+          </varlistentry>
+          <varlistentry>
             <term><option>--cracklib-enforce_for_root</option></term>
             <listitem>
               <para>
@@ -377,6 +393,30 @@
               </para>
             </listitem>
           </varlistentry>
+          <varlistentry>
+            
<term><option>--cracklib-maxrepeat=</option><replaceable>value</replaceable></term>
+            <listitem>
+              <para>
+                Add 
<option>maxrepeat=</option><replaceable>value</replaceable> option to 
pam_cracklib.so.
+              </para>
+            </listitem>
+          </varlistentry>
+          <varlistentry>
+            
<term><option>--cracklib-maxsequence=</option><replaceable>value</replaceable></term>
+            <listitem>
+              <para>
+                Add 
<option>maxsequence=</option><replaceable>value</replaceable> option to 
pam_cracklib.so.
+              </para>
+            </listitem>
+          </varlistentry>
+          <varlistentry>
+            
<term><option>--cracklib-maxclassrepeat=</option><replaceable>value</replaceable></term>
+            <listitem>
+              <para>
+                Add 
<option>maxclassrepeat=</option><replaceable>value</replaceable> option to 
pam_cracklib.so.
+              </para>
+            </listitem>
+          </varlistentry>
           <varlistentry>
             <term><option>--ecryptfs</option></term>
             <listitem>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/src/pam-module.h new/pam-config-0.96/src/pam-module.h
--- old/pam-config-0.95/src/pam-module.h        2016-04-14 12:23:19.000000000 
+0200
+++ new/pam-config-0.96/src/pam-module.h        2018-12-10 08:59:32.000000000 
+0100
@@ -11,7 +11,7 @@
  * @date 2007-07-23
  */
 /*
- * Copyright (C) 2007, 2008, 2009, 2012 - Thorsten Kukuk, Sven Schober
+ * Copyright (C) 2007, 2008, 2009, 2012, 2018 - Thorsten Kukuk, Sven Schober
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
@@ -85,6 +85,7 @@
 #define INIT_OPT_8(PREFIX,TYPE,DEFAULT,a,b,c,d,e,f,g,h) 
INIT_OPT_4(PREFIX,TYPE,DEFAULT,a,b,c,d); INIT_OPT_4(PREFIX,TYPE,DEFAULT,e,f,g,h)
 #define INIT_OPT_10(PREFIX,TYPE,DEFAULT,a,b,c,d,e,f,g,h,i,j) 
INIT_OPT_5(PREFIX,TYPE,DEFAULT,a,b,c,d,e); 
INIT_OPT_5(PREFIX,TYPE,DEFAULT,f,g,h,i,j)
 #define INIT_OPT_11(PREFIX,TYPE,DEFAULT,a,b,c,d,e,f,g,h,i,j,k) 
INIT_OPT_6(PREFIX,TYPE,DEFAULT,a,b,c,d,e,f); 
INIT_OPT_5(PREFIX,TYPE,DEFAULT,g,h,i,j,k)
+#define INIT_OPT_14(PREFIX,TYPE,DEFAULT,a,b,c,d,e,f,g,h,i,j,k,l,m,n) 
INIT_OPT_8(PREFIX,TYPE,DEFAULT,a,b,c,d,e,f,g,h); 
INIT_OPT_6(PREFIX,TYPE,DEFAULT,i,j,k,l,m,n)
 #define INIT_OPT_15(PREFIX,TYPE,DEFAULT,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o) 
INIT_OPT_8(PREFIX,TYPE,DEFAULT,a,b,c,d,e,f,g,h); 
INIT_OPT_7(PREFIX,TYPE,DEFAULT,i,j,k,l,m,n,o)
 #define INIT_OPT_16(PREFIX,TYPE,DEFAULT,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) 
INIT_OPT_8(PREFIX,TYPE,DEFAULT,a,b,c,d,e,f,g,h); 
INIT_OPT_8(PREFIX,TYPE,DEFAULT,i,j,k,l,m,n,o,p)
 
@@ -101,6 +102,7 @@
 #define OPT_SET_BODY_8(PREFIX, a,b,c,d,e,f,g,h) OPT_SET_BODY_2(PREFIX,a,b), 
OPT_SET_BODY_6(PREFIX, c,d,e,f,g,h)
 #define OPT_SET_BODY_10(PREFIX, a,b,c,d,e,f,g,h,i,j) 
OPT_SET_BODY_5(PREFIX,a,b,c,d,e), OPT_SET_BODY_5(PREFIX, f,g,h,i,j)
 #define OPT_SET_BODY_11(PREFIX, a,b,c,d,e,f,g,h,i,j,k) 
OPT_SET_BODY_5(PREFIX,a,b,c,d,e), OPT_SET_BODY_6(PREFIX, f,g,h,i,j,k)
+#define OPT_SET_BODY_14(PREFIX, a,b,c,d,e,f,g,h,i,j,k,l,m,n) 
OPT_SET_BODY_8(PREFIX,a,b,c,d,e,f,g,h), OPT_SET_BODY_6(PREFIX, i,j,k,l,m,n)
 #define OPT_SET_BODY_15(PREFIX, a,b,c,d,e,f,g,h,i,j,k,l,m,n,o) 
OPT_SET_BODY_8(PREFIX,a,b,c,d,e,f,g,h), OPT_SET_BODY_7(PREFIX, i,j,k,l,m,n,o)
 #define OPT_SET_BODY_16(PREFIX, a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) 
OPT_SET_BODY_8(PREFIX,a,b,c,d,e,f,g,h), OPT_SET_BODY_8(PREFIX, i,j,k,l,m,n,o,p)
 
@@ -147,6 +149,10 @@
                                                                  
OPT_SET_START(PREFIX, TYPE) \
                                                                  
OPT_SET_BODY_11(PREFIX,a,b,c,d,e,f,g,h,i,j,k), \
                                                                  OPT_SET_END
+#define GENERIC_OPT_SET_14(PREFIX, TYPE, DEFAULT,a,b,c,d,e,f,g,h,i,j,k,l,m,n)  
INIT_OPT_14(PREFIX,TYPE,DEFAULT,a,b,c,d,e,f,g,h,i,j,k,l,m,n); \
+                                                                 
OPT_SET_START(PREFIX, TYPE) \
+                                                                 
OPT_SET_BODY_14(PREFIX,a,b,c,d,e,f,g,h,i,j,k,l,m,n), \
+                                                                 OPT_SET_END
 
 #define GENERIC_OPT_SET_15(PREFIX, TYPE, 
DEFAULT,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o) \
                                                                   
INIT_OPT_15(PREFIX,TYPE,DEFAULT,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o);     \
@@ -281,6 +287,12 @@
   GENERIC_OPT_SET_11( password,        string, STRING_DEFAULT, OPT_1, 
OPT_2,OPT_3,OPT_4,OPT_5,OPT_6,OPT_7,OPT_8,OPT_9,OPT_10,OPT_11 ); \
   GENERIC_OPT_SET_11( session, string, STRING_DEFAULT, OPT_1, 
OPT_2,OPT_3,OPT_4,OPT_5,OPT_6,OPT_7,OPT_8,OPT_9,OPT_10,OPT_11 );
 
+#define 
DECLARE_STRING_OPTS_14(OPT_1,OPT_2,OPT_3,OPT_4,OPT_5,OPT_6,OPT_7,OPT_8,OPT_9,OPT_10,OPT_11,OPT_12,OPT_13,OPT_14)
 \
+  GENERIC_OPT_SET_14( auth, string, STRING_DEFAULT, OPT_1, 
OPT_2,OPT_3,OPT_4,OPT_5,OPT_6,OPT_7,OPT_8,OPT_9,OPT_10,OPT_11,OPT_12,OPT_13,OPT_14
 ); \
+  GENERIC_OPT_SET_14( account, string, STRING_DEFAULT, OPT_1, 
OPT_2,OPT_3,OPT_4,OPT_5,OPT_6,OPT_7,OPT_8,OPT_9,OPT_10,OPT_11,OPT_12,OPT_13,OPT_14
 ); \
+  GENERIC_OPT_SET_14( password,        string, STRING_DEFAULT, OPT_1, 
OPT_2,OPT_3,OPT_4,OPT_5,OPT_6,OPT_7,OPT_8,OPT_9,OPT_10,OPT_11,OPT_12,OPT_13,OPT_14
 ); \
+  GENERIC_OPT_SET_14( session, string, STRING_DEFAULT, OPT_1, 
OPT_2,OPT_3,OPT_4,OPT_5,OPT_6,OPT_7,OPT_8,OPT_9,OPT_10,OPT_11,OPT_12,OPT_13,OPT_14
 );
+
 
 #define DECLARE_OPT_SETS                                               \
   static option_set_t auth_opts            = { auth_bool_opts,     
auth_string_opts,     &is_enabled, &enable, &get_opt, &set_opt }; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/tests/config/Makefile 
new/pam-config-0.96/tests/config/Makefile
--- old/pam-config-0.95/tests/config/Makefile   2018-02-22 16:18:30.000000000 
+0100
+++ new/pam-config-0.96/tests/config/Makefile   2018-12-10 09:03:26.000000000 
+0100
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.13.4 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
 # tests/config/Makefile.  Generated from Makefile.in by configure.
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -14,7 +14,17 @@
 
 
 
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
+am__is_gnu_make = { \
+  if test -z '$(MAKELEVEL)'; then \
+    false; \
+  elif test -n '$(MAKE_HOST)'; then \
+    true; \
+  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+    true; \
+  else \
+    false; \
+  fi; \
+}
 am__make_running_with_option = \
   case $${target_option-} in \
       ?) ;; \
@@ -75,15 +85,15 @@
 NORMAL_UNINSTALL = :
 PRE_UNINSTALL = :
 POST_UNINSTALL = :
-build_triplet = x86_64-suse-linux-gnu
-host_triplet = x86_64-suse-linux-gnu
+build_triplet = x86_64-unknown-linux-gnu
+host_triplet = x86_64-unknown-linux-gnu
 subdir = tests/config
-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/jh_path_xml_catalog.m4 \
        $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
 mkinstalldirs = $(install_sh) -d
 CONFIG_HEADER = $(top_builddir)/config.h
 CONFIG_CLEAN_FILES =
@@ -108,13 +118,14 @@
     *) (install-info --version) >/dev/null 2>&1;; \
   esac
 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+am__DIST_COMMON = $(srcdir)/Makefile.in
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/kukuk/pakete/git/pam-config/missing aclocal-1.13
+ACLOCAL = ${SHELL} /home/kukuk/pakete/git/pam-config/missing aclocal-1.15
 AMTAR = $${TAR-tar}
 AM_DEFAULT_VERBOSITY = 1
 AUTOCONF = ${SHELL} /home/kukuk/pakete/git/pam-config/missing autoconf
 AUTOHEADER = ${SHELL} /home/kukuk/pakete/git/pam-config/missing autoheader
-AUTOMAKE = ${SHELL} /home/kukuk/pakete/git/pam-config/missing automake-1.13
+AUTOMAKE = ${SHELL} /home/kukuk/pakete/git/pam-config/missing automake-1.15
 AWK = gawk
 CC = gcc
 CCDEPMODE = depmode=gcc3
@@ -158,10 +169,10 @@
 PACKAGE = pam-config
 PACKAGE_BUGREPORT = 
 PACKAGE_NAME = pam-config
-PACKAGE_STRING = pam-config 0.95
+PACKAGE_STRING = pam-config 0.96
 PACKAGE_TARNAME = pam-config
 PACKAGE_URL = 
-PACKAGE_VERSION = 0.95
+PACKAGE_VERSION = 0.96
 PATH_SEPARATOR = :
 POSUB = po
 RANLIB = ranlib
@@ -170,7 +181,7 @@
 SHELL = /bin/sh
 STRIP = 
 USE_NLS = yes
-VERSION = 0.95
+VERSION = 0.96
 XGETTEXT = /usr/bin/xgettext
 XGETTEXT_015 = /usr/bin/xgettext
 XGETTEXT_EXTRA_OPTIONS = 
@@ -189,28 +200,28 @@
 am__tar = $${TAR-tar} chof - "$$tardir"
 am__untar = $${TAR-tar} xf -
 bindir = ${exec_prefix}/bin
-build = x86_64-suse-linux-gnu
+build = x86_64-unknown-linux-gnu
 build_alias = 
 build_cpu = x86_64
 build_os = linux-gnu
-build_vendor = suse
+build_vendor = unknown
 builddir = .
 datadir = ${datarootdir}
 datarootdir = ${prefix}/share
 docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
 dvidir = ${docdir}
 exec_prefix = ${prefix}
-host = x86_64-suse-linux-gnu
+host = x86_64-unknown-linux-gnu
 host_alias = 
 host_cpu = x86_64
 host_os = linux-gnu
-host_vendor = suse
+host_vendor = unknown
 htmldir = ${docdir}
 includedir = ${prefix}/include
 infodir = ${datarootdir}/info
 install_sh = ${SHELL} /home/kukuk/pakete/git/pam-config/install-sh
-libdir = ${exec_prefix}/lib
-libexecdir = ${exec_prefix}/libexec
+libdir = ${exec_prefix}/lib64
+libexecdir = ${exec_prefix}/lib
 localedir = ${datarootdir}/locale
 localstatedir = ${prefix}/var
 mandir = ${datarootdir}/man
@@ -244,7 +255,6 @@
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/config/Makefile'; \
        $(am__cd) $(top_srcdir) && \
          $(AUTOMAKE) --gnu tests/config/Makefile
-.PRECIOUS: Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
        @case '$?' in \
          *config.status*) \
@@ -412,6 +422,8 @@
        maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
        pdf-am ps ps-am tags-am uninstall uninstall-am
 
+.PRECIOUS: Makefile
+
 
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/pam-config-0.95/tests/pam-config.test/Makefile 
new/pam-config-0.96/tests/pam-config.test/Makefile
--- old/pam-config-0.95/tests/pam-config.test/Makefile  2018-02-22 
16:18:30.000000000 +0100
+++ new/pam-config-0.96/tests/pam-config.test/Makefile  2018-12-10 
09:03:26.000000000 +0100
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.13.4 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
 # tests/pam-config.test/Makefile.  Generated from Makefile.in by configure.
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -14,7 +14,17 @@
 
 
 
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
+am__is_gnu_make = { \
+  if test -z '$(MAKELEVEL)'; then \
+    false; \
+  elif test -n '$(MAKE_HOST)'; then \
+    true; \
+  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+    true; \
+  else \
+    false; \
+  fi; \
+}
 am__make_running_with_option = \
   case $${target_option-} in \
       ?) ;; \
@@ -75,15 +85,15 @@
 NORMAL_UNINSTALL = :
 PRE_UNINSTALL = :
 POST_UNINSTALL = :
-build_triplet = x86_64-suse-linux-gnu
-host_triplet = x86_64-suse-linux-gnu
+build_triplet = x86_64-unknown-linux-gnu
+host_triplet = x86_64-unknown-linux-gnu
 subdir = tests/pam-config.test
-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/jh_path_xml_catalog.m4 \
        $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
 mkinstalldirs = $(install_sh) -d
 CONFIG_HEADER = $(top_builddir)/config.h
 CONFIG_CLEAN_FILES =
@@ -108,13 +118,14 @@
     *) (install-info --version) >/dev/null 2>&1;; \
   esac
 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+am__DIST_COMMON = $(srcdir)/Makefile.in
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/kukuk/pakete/git/pam-config/missing aclocal-1.13
+ACLOCAL = ${SHELL} /home/kukuk/pakete/git/pam-config/missing aclocal-1.15
 AMTAR = $${TAR-tar}
 AM_DEFAULT_VERBOSITY = 1
 AUTOCONF = ${SHELL} /home/kukuk/pakete/git/pam-config/missing autoconf
 AUTOHEADER = ${SHELL} /home/kukuk/pakete/git/pam-config/missing autoheader
-AUTOMAKE = ${SHELL} /home/kukuk/pakete/git/pam-config/missing automake-1.13
+AUTOMAKE = ${SHELL} /home/kukuk/pakete/git/pam-config/missing automake-1.15
 AWK = gawk
 CC = gcc
 CCDEPMODE = depmode=gcc3
@@ -158,10 +169,10 @@
 PACKAGE = pam-config
 PACKAGE_BUGREPORT = 
 PACKAGE_NAME = pam-config
-PACKAGE_STRING = pam-config 0.95
+PACKAGE_STRING = pam-config 0.96
 PACKAGE_TARNAME = pam-config
 PACKAGE_URL = 
-PACKAGE_VERSION = 0.95
+PACKAGE_VERSION = 0.96
 PATH_SEPARATOR = :
 POSUB = po
 RANLIB = ranlib
@@ -170,7 +181,7 @@
 SHELL = /bin/sh
 STRIP = 
 USE_NLS = yes
-VERSION = 0.95
+VERSION = 0.96
 XGETTEXT = /usr/bin/xgettext
 XGETTEXT_015 = /usr/bin/xgettext
 XGETTEXT_EXTRA_OPTIONS = 
@@ -189,28 +200,28 @@
 am__tar = $${TAR-tar} chof - "$$tardir"
 am__untar = $${TAR-tar} xf -
 bindir = ${exec_prefix}/bin
-build = x86_64-suse-linux-gnu
+build = x86_64-unknown-linux-gnu
 build_alias = 
 build_cpu = x86_64
 build_os = linux-gnu
-build_vendor = suse
+build_vendor = unknown
 builddir = .
 datadir = ${datarootdir}
 datarootdir = ${prefix}/share
 docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
 dvidir = ${docdir}
 exec_prefix = ${prefix}
-host = x86_64-suse-linux-gnu
+host = x86_64-unknown-linux-gnu
 host_alias = 
 host_cpu = x86_64
 host_os = linux-gnu
-host_vendor = suse
+host_vendor = unknown
 htmldir = ${docdir}
 includedir = ${prefix}/include
 infodir = ${datarootdir}/info
 install_sh = ${SHELL} /home/kukuk/pakete/git/pam-config/install-sh
-libdir = ${exec_prefix}/lib
-libexecdir = ${exec_prefix}/libexec
+libdir = ${exec_prefix}/lib64
+libexecdir = ${exec_prefix}/lib
 localedir = ${datarootdir}/locale
 localstatedir = ${prefix}/var
 mandir = ${datarootdir}/man
@@ -244,7 +255,6 @@
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 
tests/pam-config.test/Makefile'; \
        $(am__cd) $(top_srcdir) && \
          $(AUTOMAKE) --gnu tests/pam-config.test/Makefile
-.PRECIOUS: Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
        @case '$?' in \
          *config.status*) \
@@ -412,6 +422,8 @@
        maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
        pdf-am ps ps-am tags-am uninstall uninstall-am
 
+.PRECIOUS: Makefile
+
 
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.


Reply via email to