summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2013-08-28 20:41:26 +0200
committerArthur de Jong <arthur@arthurdejong.org>2013-08-28 20:54:28 +0200
commit8571bc1dff746bd97411456cdb32e386d90d9047 (patch)
tree9e967255c5579acfecb9d618f7369f30e20c6665
parent890d2271c6f89049c5f74e52f35bf67fd80a5fab (diff)
Fix for common spelling mistake
-rw-r--r--NEWS2
-rw-r--r--README4
-rw-r--r--common/dict.c2
-rw-r--r--compat/attrs.h2
-rw-r--r--compat/nss_compat.h2
-rw-r--r--man/nslcd.conf.5.xml4
-rw-r--r--nslcd/myldap.c2
7 files changed, 9 insertions, 9 deletions
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