diff options
author | Werner Koch <[email protected]> | 2020-12-21 16:37:35 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2020-12-21 16:37:58 +0000 |
commit | 323a69ef65e0d48fb9d038ecca01a70688ad3325 (patch) | |
tree | 72147badda6c45c30f88d4aae01f448d1a5e3caa | |
parent | po: Auto-merge (diff) | |
download | gnupg-323a69ef65e0d48fb9d038ecca01a70688ad3325.tar.gz gnupg-323a69ef65e0d48fb9d038ecca01a70688ad3325.zip |
common: Remove superfluous debug output from dotlock.c.
* common/dotlock.c (dotlock_create_unix): Remove debug output.
--
This was left over from developement about 10 years ago. Exhibits
itself when using sshfs.
GnuPG-bug-id: 5193
-rw-r--r-- | common/dotlock.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/common/dotlock.c b/common/dotlock.c index e2cf6f650..45280293b 100644 --- a/common/dotlock.c +++ b/common/dotlock.c @@ -773,8 +773,6 @@ dotlock_create_unix (dotlock_t h, const char *file_to_lock) } strcpy (stpcpy (h->lockname, file_to_lock), EXTSEP_S "lock"); UNLOCK_all_lockfiles (); - if (h->use_o_excl) - my_debug_1 ("locking for '%s' done via O_EXCL\n", h->lockname); return h; |