nss-pam-ldapd branch master updated. 0.9.1-1-g8571bc1
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
nss-pam-ldapd branch master updated. 0.9.1-1-g8571bc1
- From: Commits of the nss-pam-ldapd project <nss-pam-ldapd-commits [at] lists.arthurdejong.org>
- To: nss-pam-ldapd-commits [at] lists.arthurdejong.org
- Reply-to: nss-pam-ldapd-users [at] lists.arthurdejong.org
- Subject: nss-pam-ldapd branch master updated. 0.9.1-1-g8571bc1
- Date: Wed, 28 Aug 2013 20:54:47 +0200 (CEST)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "nss-pam-ldapd".
The branch, master has been updated
via 8571bc1dff746bd97411456cdb32e386d90d9047 (commit)
from 890d2271c6f89049c5f74e52f35bf67fd80a5fab (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://arthurdejong.org/git/nss-pam-ldapd/commit/?id=8571bc1dff746bd97411456cdb32e386d90d9047
commit 8571bc1dff746bd97411456cdb32e386d90d9047
Author: Arthur de Jong <arthur@arthurdejong.org>
Date: Wed Aug 28 20:41:26 2013 +0200
Fix for common spelling mistake
diff --git a/NEWS b/NEWS
index 48ea11c..3ca52ad 100644
--- a/NEWS
+++ b/NEWS
@@ -160,7 +160,7 @@ changes from 0.8.6 to 0.8.7
ports
* make whether or not to do case-sensitive filtering configurable (patch by
Matthew L. Dailey)
-* document the fact that each thread opens it's own connection (patch by
+* document the fact that each thread opens its own connection (patch by
Chris Hiestand)
* some small portability improvements
* try to prevent some of the Broken pipe messages in nslcd
diff --git a/README b/README
index 9c58ad3..7e707af 100644
--- a/README
+++ b/README
@@ -87,7 +87,7 @@ re-added after the refactoring.
The most practical improvements over nss_ldap are:
- the LDAP library is not loaded for every process doing LDAP lookups
- the number of connections to the LDAP server is limited, because not every
- process will open it's own connection
+ process will open its own connection
- hostname lookups should now be deadlock-free because the LDAP server name is
no longer looked up using the ldap method
- avoid problems with TLS connections in suid binaries and other process-local
@@ -129,7 +129,7 @@ separated hex notation (e.g. 00:00:92:90:ee:e2).
automounter map lookups (which are also defined in /etc/nsswitch.conf) are
currently not supported because the NSS interface is not used for these. The
-common autofs implementation (on GNU/Linux) currently uses it's own method for
+common autofs implementation (on GNU/Linux) currently uses its own method for
getting the maps from LDAP.
Although mail aliases are exposed through NSS, most mail servers parse
diff --git a/common/dict.c b/common/dict.c
index c69447e..03e9a7b 100644
--- a/common/dict.c
+++ b/common/dict.c
@@ -33,7 +33,7 @@
#include "dict.h"
/*
- This module uses a hashtable to store it's key to value mappings. The
+ This module uses a hashtable to store its key to value mappings. The
structure is basically as follows:
[struct dictionary]
diff --git a/compat/attrs.h b/compat/attrs.h
index daffd13..83f1777 100644
--- a/compat/attrs.h
+++ b/compat/attrs.h
@@ -49,7 +49,7 @@
#define LIKE_PRINTF(format_idx, arg_idx) /* no attribute */
#endif
-/* indicates that the function is "pure": it's result is purely based on
+/* indicates that the function is "pure": its result is purely based on
the parameters and has no side effects or used static data */
#if GCC_VERSION(3, 0)
#define PURE __attribute__((__pure__))
diff --git a/compat/nss_compat.h b/compat/nss_compat.h
index dc1d32d..bdc7d92 100644
--- a/compat/nss_compat.h
+++ b/compat/nss_compat.h
@@ -109,7 +109,7 @@ struct etherent {
};
#endif /* not HAVE_STRUCT_ETHERENT */
-/* We also define struct __netgrent because it's definition is
+/* We also define struct __netgrent because its definition is
not publically available. This is taken from inet/netgroup.h
of the glibc (2.3.6) source tarball.
The first part of the struct is the only part that is modified
diff --git a/man/nslcd.conf.5.xml b/man/nslcd.conf.5.xml
index 2b5ee7c..65770b1 100644
--- a/man/nslcd.conf.5.xml
+++ b/man/nslcd.conf.5.xml
@@ -829,12 +829,12 @@
</para>
<para>
If <replaceable>DB</replaceable> is one of the nsswitch maps,
- <command>nscd</command> is contacted to flush it's cache for the
+ <command>nscd</command> is contacted to flush its cache for the
specified database.
</para>
<para> <!-- since 0.9.1 -->
If <replaceable>DB</replaceable> is <literal>nfsidmap</literal>,
- <command>nfsidmap</command> to contacted to clear it's cache.
+ <command>nfsidmap</command> is contacted to clear its cache.
</para>
<para>
Using this option ensures that external caches are cleared of
diff --git a/nslcd/myldap.c b/nslcd/myldap.c
index 757eb20..959669b 100644
--- a/nslcd/myldap.c
+++ b/nslcd/myldap.c
@@ -799,7 +799,7 @@ static int do_set_options(MYLDAP_SESSION *session)
int rc;
struct timeval tv;
#ifdef LDAP_OPT_CONNECT_CB
- /* make this static because OpenLDAP doesn't make it's own copy */
+ /* make this static because OpenLDAP doesn't make its own copy */
static struct ldap_conncb cb;
#endif /* LDAP_OPT_CONNECT_CB */
#ifdef LDAP_OPT_X_TLS
-----------------------------------------------------------------------
Summary of changes:
NEWS | 2 +-
README | 4 ++--
common/dict.c | 2 +-
compat/attrs.h | 2 +-
compat/nss_compat.h | 2 +-
man/nslcd.conf.5.xml | 4 ++--
nslcd/myldap.c | 2 +-
7 files changed, 9 insertions(+), 9 deletions(-)
hooks/post-receive
--
nss-pam-ldapd
--
To unsubscribe send an email to
nss-pam-ldapd-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/nss-pam-ldapd-commits/
- nss-pam-ldapd branch master updated. 0.9.1-1-g8571bc1,
Commits of the nss-pam-ldapd project