diff options
Diffstat (limited to 'g10/keyserver.c')
-rw-r--r-- | g10/keyserver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/keyserver.c b/g10/keyserver.c index 3486abb51..40659f092 100644 --- a/g10/keyserver.c +++ b/g10/keyserver.c @@ -1464,7 +1464,7 @@ keyserver_refresh (ctrl_t ctrl, strlist_t users) /* If the original options didn't have fast import, and the trustdb is dirty, rebuild. */ if(!(opt.keyserver_options.import_options&IMPORT_FAST)) - check_or_update_trustdb (); + check_or_update_trustdb (ctrl); return err; } @@ -1885,7 +1885,7 @@ keyserver_fetch (ctrl_t ctrl, strlist_t urilist) /* If the original options didn't have fast import, and the trustdb is dirty, rebuild. */ if (!(opt.keyserver_options.import_options&IMPORT_FAST)) - check_or_update_trustdb (); + check_or_update_trustdb (ctrl); return 0; } |