X-Git-Url: https://the.earth.li/gitweb/?p=onak.git;a=blobdiff_plain;f=onak.c;h=085a876c54c9dac6ceb1d4f22bbb8ec2fcff8f91;hp=17625baf59eed00909e2d39849e1f3aa20d50ebd;hb=adc800dbc424a1e246dd4a82a0c2e88eeda25531;hpb=bf490f1ab8d9e6ccfdaf94814c8e6987994a7cf2 diff --git a/onak.c b/onak.c index 17625ba..085a876 100644 --- a/onak.c +++ b/onak.c @@ -15,8 +15,7 @@ * more details. * * You should have received a copy of the GNU General Public License along with - * this program; if not, write to the Free Software Foundation, Inc., 51 - * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * this program. If not, see . */ #include @@ -234,7 +233,7 @@ int main(int argc, char *argv[]) logthing(LOGTHING_INFO, "Finished reading %d keys.", result); - result = cleankeys(keys); + result = cleankeys(&keys, config.clean_policies); logthing(LOGTHING_INFO, "%d keys cleaned.", result); @@ -289,7 +288,8 @@ int main(int argc, char *argv[]) result); if (keys != NULL) { - result = cleankeys(keys); + result = cleankeys(&keys, + config.clean_policies); logthing(LOGTHING_INFO, "%d keys cleaned.", result); @@ -437,7 +437,7 @@ int main(int argc, char *argv[]) dbctx->starttrans(dbctx); if (dbctx->fetch_key_id(dbctx, keyid, &keys, true)) { dbctx->delete_key(dbctx, keyid, true); - cleankeys(keys); + cleankeys(&keys, config.clean_policies); dbctx->store_key(dbctx, keys, true, false); } else { puts("Key not found");