Fix problem when using the fallback dirmngr.

This commit is contained in:
Werner Koch 2008-03-31 10:31:20 +00:00
parent df4e131786
commit 03d6961073
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-03-31 Werner Koch <wk@g10code.com>
* call-dirmngr.c (start_dirmngr): Use log_info instead of
log_error when falling back to start dirmngr.
2008-03-20 Werner Koch <wk@g10code.com>
* certlist.c (gpgsm_add_to_certlist): Always save the first

View File

@ -274,7 +274,7 @@ start_dirmngr (ctrl_t ctrl)
#ifndef HAVE_W32_SYSTEM
if (gpg_err_code (rc) == GPG_ERR_ASS_CONNECT_FAILED)
{
log_error (_("can't connect to the dirmngr - trying fall back\n"));
log_info (_("can't connect to the dirmngr - trying fall back\n"));
force_pipe_server = 1;
return start_dirmngr (ctrl);
}