X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=add.c;h=2aba92216a39893c362aad6f16ed5264437cd730;hb=2f81a42ec6952ef08a1a440d6044c75882158da0;hp=f90dd88be53a10d7e809ea7e2ecb30fe71f4a298;hpb=6afb1be70692774239e25ff9fb1083bedc714031;p=onak.git diff --git a/add.c b/add.c index f90dd88..2aba922 100644 --- a/add.c +++ b/add.c @@ -5,7 +5,7 @@ * * Copyright 2002 Project Purple * - * $Id: add.c,v 1.12 2004/03/23 12:33:46 noodles Exp $ + * $Id: add.c,v 1.13 2004/05/26 18:53:14 noodles Exp $ */ #include @@ -27,11 +27,12 @@ int main(int argc, char *argv[]) { - struct openpgp_packet_list *packets = NULL; - struct openpgp_publickey *keys = NULL; - char **params = NULL; - struct buffer_ctx ctx; - int i; + struct openpgp_packet_list *packets = NULL; + struct openpgp_publickey *keys = NULL; + char **params = NULL; + struct buffer_ctx ctx; + int count = 0; + int i; memset(&ctx, 0, sizeof(ctx)); @@ -64,8 +65,10 @@ int main(int argc, char *argv[]) if (packets != NULL) { parse_keys(packets, &keys); initdb(false); - printf("Got %d new keys.\n", - update_keys(&keys)); + count = update_keys(&keys); + printf("Got %d new keys.\n", count); + logthing(LOGTHING_NOTICE, "Got %d new keys.", + count); if (keys != NULL) { sendkeysync(keys); free_publickey(keys);