aboutsummaryrefslogtreecommitdiffstats
path: root/common/dotlock.c
diff options
context:
space:
mode:
authorYuri Chornoivan <[email protected]>2017-02-20 21:19:50 +0000
committerDaniel Kahn Gillmor <[email protected]>2017-02-21 18:11:46 +0000
commit24cf0606b43038c7ce5e9c6ccb921895619c04f0 (patch)
tree4888dfeb4ed52052e71158b948499b12b4b04ec9 /common/dotlock.c
parentdirmngr: Add special treatment for the standard hkps pool to ntbtls. (diff)
downloadgnupg-24cf0606b43038c7ce5e9c6ccb921895619c04f0.tar.gz
gnupg-24cf0606b43038c7ce5e9c6ccb921895619c04f0.zip
Clean up word replication.
-- This fixes extra word repetitions (like "the the" or "is is") in the code and docs. Signed-off-by: Daniel Kahn Gillmor <[email protected]>
Diffstat (limited to 'common/dotlock.c')
-rw-r--r--common/dotlock.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/dotlock.c b/common/dotlock.c
index 7ebd5231c..5fe652ec0 100644
--- a/common/dotlock.c
+++ b/common/dotlock.c
@@ -411,7 +411,7 @@ struct dotlock_handle
};
-/* A list of of all lock handles. The volatile attribute might help
+/* A list of all lock handles. The volatile attribute might help
if used in an atexit handler. Note that [UN]LOCK_all_lockfiles
must not change ERRNO. */
static volatile dotlock_t all_lockfiles;
@@ -913,7 +913,7 @@ dotlock_create (const char *file_to_lock, unsigned int flags)
-/* Convenience function to store a file descriptor (or any any other
+/* Convenience function to store a file descriptor (or any other
integer value) in the context of handle H. */
void
dotlock_set_fd (dotlock_t h, int fd)
@@ -921,7 +921,7 @@ dotlock_set_fd (dotlock_t h, int fd)
h->extra_fd = fd;
}
-/* Convenience function to retrieve a file descriptor (or any any other
+/* Convenience function to retrieve a file descriptor (or any other
integer value) stored in the context of handle H. */
int
dotlock_get_fd (dotlock_t h)