diff options
Diffstat (limited to '')
-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 0f60f7d37..4de56fc46 100644 --- a/g10/keyserver.c +++ b/g10/keyserver.c @@ -1344,7 +1344,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)) - trustdb_check_or_update(); + check_or_update_trustdb (); return rc; } @@ -1688,7 +1688,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)) - trustdb_check_or_update (); + check_or_update_trustdb (); return 0; } |