lists.arthurdejong.org
RSS feed

nss-pam-ldapd commit: r1544 - in nss-pam-ldapd-0.7: . debian man

[Date Prev][Date Next] [Thread Prev][Thread Next]

nss-pam-ldapd commit: r1544 - in nss-pam-ldapd-0.7: . debian man



Author: arthur
Date: Sun Sep 18 20:24:23 2011
New Revision: 1544
URL: http://arthurdejong.org/viewvc/nss-pam-ldapd?revision=1544&view=revision

Log:
get files ready for 0.7.14 release

Modified:
   nss-pam-ldapd-0.7/ChangeLog
   nss-pam-ldapd-0.7/NEWS
   nss-pam-ldapd-0.7/configure.ac
   nss-pam-ldapd-0.7/debian/changelog
   nss-pam-ldapd-0.7/debian/copyright
   nss-pam-ldapd-0.7/man/nslcd.8.xml
   nss-pam-ldapd-0.7/man/nslcd.conf.5.xml
   nss-pam-ldapd-0.7/man/pam_ldap.8.xml

Modified: nss-pam-ldapd-0.7/ChangeLog
==============================================================================
--- nss-pam-ldapd-0.7/ChangeLog Wed Sep 14 21:13:21 2011        (r1543)
+++ nss-pam-ldapd-0.7/ChangeLog Sun Sep 18 20:24:23 2011        (r1544)
@@ -1,3 +1,42 @@
+2011-08-24 20:45  arthur
+
+       * [r1516] ., nslcd/cfg.c: fix a problem with uninitialised memory
+         while parsing the tls_ciphers option (r1471 from development)
+
+2011-07-02 21:28  arthur
+
+       * [r1477] ., nslcd/group.c, nslcd/passwd.c, nslcd/shadow.c: grow
+         static buffers so that they should be large enough (part of r1476
+         from trunk)
+
+2011-06-05 09:18  arthur
+
+       * [r1472] ., common/expr.c, tests/test_expr.c: handle expressions
+         where the expander function returns NULL (handle it as an empty
+         string) (r1471 from development)
+
+2011-06-05 08:55  arthur
+
+       * [r1469] nslcd/myldap.c: fix r1465 to split attribute/value at
+         right place
+
+2011-05-21 14:54  arthur
+
+       * [r1465] ., nslcd/myldap.c: fix problem with partial attribute
+         name matches in DN (e.g. uid vs. uidNumber) (thanks to Timothy
+         White for the fix) (r1464 from trunk)
+
+2011-04-22 10:03  arthur
+
+       * [r1432] ., nslcd/myldap.c: report correct reported error from
+         ldap_abandon() (merge r1431 from development)
+
+2010-12-11 21:57  arthur
+
+       * [r1323] ChangeLog, NEWS, configure.ac, debian/changelog,
+         man/nslcd.8.xml, man/nslcd.conf.5.xml, man/pam_ldap.8.xml: get
+         files ready for 0.7.13 release
+
 2010-12-11 20:11  arthur
 
        * [r1321] ., nslcd/pam.c: return correct kind of error code from

Modified: nss-pam-ldapd-0.7/NEWS
==============================================================================
--- nss-pam-ldapd-0.7/NEWS      Wed Sep 14 21:13:21 2011        (r1543)
+++ nss-pam-ldapd-0.7/NEWS      Sun Sep 18 20:24:23 2011        (r1544)
@@ -1,3 +1,16 @@
+changes from 0.7.13 to 0.7.14
+-----------------------------
+
+* log correct error from ldap_abandon()
+* fix problem with partial attribute name matches in DN (thanks Timothy
+  White)
+* handle expressions where some variable would expand to NULL
+* make buffer sizes consistent and grow all buffers holding string
+  representations of numbers to be able to hold 64-bit numbers
+* fix a problem with uninitialised memory while parsing the tls_ciphers
+  option
+
+
 changes from 0.7.12 to 0.7.13
 -----------------------------
 

Modified: nss-pam-ldapd-0.7/configure.ac
==============================================================================
--- nss-pam-ldapd-0.7/configure.ac      Wed Sep 14 21:13:21 2011        (r1543)
+++ nss-pam-ldapd-0.7/configure.ac      Sun Sep 18 20:24:23 2011        (r1544)
@@ -2,7 +2,7 @@
 #
 # Copyright (C) 2006 Luke Howard
 # Copyright (C) 2006 West Consulting
-# Copyright (C) 2006, 2007, 2008, 2009, 2010 Arthur de Jong
+# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Arthur de Jong
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -23,7 +23,7 @@
 AC_COPYRIGHT(
 [Copyright (C) 2006 Luke Howard
 Copyright (C) 2006 West Consulting
-Copyright (C) 2006, 2007, 2008, 2009, 2010 Arthur de Jong
+Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Arthur de Jong
 
 This configure script is derived from configure.ac which is free software;
 you can redistribute it and/or modify it under the terms of the GNU Lesser
@@ -32,8 +32,8 @@
 configure.ac file for more details.])
 
 # initialize and set version and bugreport address
-AC_INIT([nss-pam-ldapd],[0.7.13],[nss-pam-ldapd-users@lists.arthurdejong.org])
-RELEASE_MONTH="Dec 2010"
+AC_INIT([nss-pam-ldapd],[0.7.14],[nss-pam-ldapd-users@lists.arthurdejong.org])
+RELEASE_MONTH="Sep 2011"
 AC_SUBST(RELEASE_MONTH)
 AC_CONFIG_SRCDIR([nslcd.h])
 

Modified: nss-pam-ldapd-0.7/debian/changelog
==============================================================================
--- nss-pam-ldapd-0.7/debian/changelog  Wed Sep 14 21:13:21 2011        (r1543)
+++ nss-pam-ldapd-0.7/debian/changelog  Sun Sep 18 20:24:23 2011        (r1544)
@@ -1,3 +1,16 @@
+nss-pam-ldapd (0.7.14) stable; urgency=low
+
+  * log correct error from ldap_abandon()
+  * fix problem with partial attribute name matches in DN (thanks Timothy
+    White)
+  * handle expressions where some variable would expand to NULL
+  * make buffer sizes consistent and grow all buffers holding string
+    representations of numbers to be able to hold 64-bit numbers
+  * fix a problem with uninitialised memory while parsing the tls_ciphers
+    option (closes: #638872)
+
+ -- Arthur de Jong <adejong@debian.org>  Fri, 18 Sep 2011 20:00:00 +0200
+
 nss-pam-ldapd (0.7.13) unstable; urgency=low
 
   * fix handling of idle_timelimit option

Modified: nss-pam-ldapd-0.7/debian/copyright
==============================================================================
--- nss-pam-ldapd-0.7/debian/copyright  Wed Sep 14 21:13:21 2011        (r1543)
+++ nss-pam-ldapd-0.7/debian/copyright  Sun Sep 18 20:24:23 2011        (r1544)
@@ -18,7 +18,7 @@
 
   Copyright (C) 1997-2006 Luke Howard
   Copyright (C) 2006-2007 West Consulting
-  Copyright (C) 2006-2009 Arthur de Jong
+  Copyright (C) 2006-2011 Arthur de Jong
   Copyright (C) 2009 Howard Chu
 
   This library is free software; you can redistribute it and/or

Modified: nss-pam-ldapd-0.7/man/nslcd.8.xml
==============================================================================
--- nss-pam-ldapd-0.7/man/nslcd.8.xml   Wed Sep 14 21:13:21 2011        (r1543)
+++ nss-pam-ldapd-0.7/man/nslcd.8.xml   Sun Sep 18 20:24:23 2011        (r1544)
@@ -6,7 +6,7 @@
    nslcd.8.xml - docbook manual page for nslcd
 
    Copyright (C) 2006 West Consulting
-   Copyright (C) 2006, 2007, 2008, 2009, 2010 Arthur de Jong
+   Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Arthur de Jong
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
@@ -36,9 +36,9 @@
  <refmeta>
   <refentrytitle>nslcd</refentrytitle>
   <manvolnum>8</manvolnum>
-  <refmiscinfo class="version">Version 0.7.13</refmiscinfo>
+  <refmiscinfo class="version">Version 0.7.14</refmiscinfo>
   <refmiscinfo class="manual">System Manager's Manual</refmiscinfo>
-  <refmiscinfo class="date">Dec 2010</refmiscinfo>
+  <refmiscinfo class="date">Sep 2011</refmiscinfo>
  </refmeta>
 
  <refnamediv id="name">

Modified: nss-pam-ldapd-0.7/man/nslcd.conf.5.xml
==============================================================================
--- nss-pam-ldapd-0.7/man/nslcd.conf.5.xml      Wed Sep 14 21:13:21 2011        
(r1543)
+++ nss-pam-ldapd-0.7/man/nslcd.conf.5.xml      Sun Sep 18 20:24:23 2011        
(r1544)
@@ -6,7 +6,7 @@
    nslcd.conf.5.xml - docbook manual page for nslcd.conf
 
    Copyright (C) 1997-2005 Luke Howard
-   Copyright (C) 2007, 2008, 2009, 2010 Arthur de Jong
+   Copyright (C) 2007, 2008, 2009, 2010, 2011 Arthur de Jong
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
@@ -36,9 +36,9 @@
  <refmeta>
   <refentrytitle>nslcd.conf</refentrytitle>
   <manvolnum>5</manvolnum>
-  <refmiscinfo class="version">Version 0.7.13</refmiscinfo>
+  <refmiscinfo class="version">Version 0.7.14</refmiscinfo>
   <refmiscinfo class="manual">System Manager's Manual</refmiscinfo>
-  <refmiscinfo class="date">Dec 2010</refmiscinfo>
+  <refmiscinfo class="date">Sep 2011</refmiscinfo>
  </refmeta>
 
  <refnamediv id="name">

Modified: nss-pam-ldapd-0.7/man/pam_ldap.8.xml
==============================================================================
--- nss-pam-ldapd-0.7/man/pam_ldap.8.xml        Wed Sep 14 21:13:21 2011        
(r1543)
+++ nss-pam-ldapd-0.7/man/pam_ldap.8.xml        Sun Sep 18 20:24:23 2011        
(r1544)
@@ -5,7 +5,7 @@
 <!--
    pam_ldap.8.xml - docbook manual page for pam_ldap PAM module
 
-   Copyright (C) 2009, 2010 Arthur de Jong
+   Copyright (C) 2009, 2010, 2011 Arthur de Jong
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
@@ -35,9 +35,9 @@
  <refmeta>
   <refentrytitle>pam_ldap</refentrytitle>
   <manvolnum>8</manvolnum>
-  <refmiscinfo class="version">Version 0.7.13</refmiscinfo>
+  <refmiscinfo class="version">Version 0.7.14</refmiscinfo>
   <refmiscinfo class="manual">System Manager's Manual</refmiscinfo>
-  <refmiscinfo class="date">Dec 2010</refmiscinfo>
+  <refmiscinfo class="date">Sep 2011</refmiscinfo>
  </refmeta>
 
  <refnamediv id="name">
-- 
To unsubscribe send an email to
nss-pam-ldapd-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/nss-pam-ldapd-commits/