Mailing List Archive

Query on test/basic.c::check_pubkey()
In the tests, basic.c has a number of routines, including one that does some
checks on public keys. The code (around line 1090 in a current svn checkout)
looks like this:
for (i = 0; i < sizeof (pubkeys) / sizeof (*pubkeys); i++)
if (pubkeys[i].id)
check_one_pubkey (i, pubkeys[i]);

check_one_pubkey_new (i);

Is that what is really intended? That is, is check_one_pubkey_new() only
supposed to check the last of pubkeys?

Brad