aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Heinecke <[email protected]>2019-11-12 09:38:41 +0000
committerAndre Heinecke <[email protected]>2019-11-12 09:38:41 +0000
commit40daa0bc0bc87a521713d7dd1568f3874759a143 (patch)
tree4493065aa635eb58bd58d387fad087b13d407357
parentdirmngr: Remove cruft from dirmngr_ldap (diff)
downloadgnupg-40daa0bc0bc87a521713d7dd1568f3874759a143.tar.gz
gnupg-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
-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;
}