summaryrefslogtreecommitdiffstats
path: root/dirmngr/dirmngr.c
diff options
context:
space:
mode:
authorAndre Heinecke <aheinecke@gnupg.org>2019-11-12 10:38:41 +0100
committerAndre Heinecke <aheinecke@gnupg.org>2019-11-12 10:38:41 +0100
commit40daa0bc0bc87a521713d7dd1568f3874759a143 (patch)
tree4493065aa635eb58bd58d387fad087b13d407357 /dirmngr/dirmngr.c
parentdirmngr: Remove cruft from dirmngr_ldap (diff)
downloadgnupg2-40daa0bc0bc87a521713d7dd1568f3874759a143.tar.xz
gnupg2-40daa0bc0bc87a521713d7dd1568f3874759a143.zip
dirmngr: Tune down err on missing ldapservers file
* dirmngr/dirmngr.c (parse_ldapservers_file): Tune down error in case no such file exists. -- This is hardly an error because by default such a file does not exist. This caused trouble in support because people think "Oh the system prints an error". GnuPG-Bug-Id: T3539
Diffstat (limited to '')
-rw-r--r--dirmngr/dirmngr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dirmngr/dirmngr.c b/dirmngr/dirmngr.c
index 3a99a2e2e..f7dd029f6 100644
--- a/dirmngr/dirmngr.c
+++ b/dirmngr/dirmngr.c
@@ -1638,7 +1638,7 @@ parse_ldapserver_file (const char* filename)
fp = es_fopen (filename, "r");
if (!fp)
{
- log_error (_("error opening '%s': %s\n"), filename, strerror (errno));
+ log_info ("failed to open '%s': %s\n", filename, strerror (errno));
return NULL;
}