2006-09-22 Marcus Brinkmann <marcus@g10code.de>

* keylist.c (keylist_colon_handler): Move debug output after
	initialising KEY.
This commit is contained in:
Marcus Brinkmann 2006-09-22 12:29:36 +00:00
parent 9e09d93de8
commit 4b1393f664
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2006-09-22 Marcus Brinkmann <marcus@g10code.de>
* keylist.c (keylist_colon_handler): Move debug output after
initialising KEY.
2006-07-29 Marcus Brinkmann <marcus@g10code.de>
* gpgme-config.in (Options): Add NETLIBS.

View File

@ -386,9 +386,6 @@ keylist_colon_handler (void *priv, char *line)
gpgme_subkey_t subkey = NULL;
gpgme_key_sig_t keysig = NULL;
DEBUG3 ("keylist_colon_handler ctx = %p, key = %p, line = %s\n",
ctx, key, line ? line : "(null)");
err = _gpgme_op_data_lookup (ctx, OPDATA_KEYLIST, &hook, -1, NULL);
opd = hook;
if (err)
@ -396,6 +393,9 @@ keylist_colon_handler (void *priv, char *line)
key = opd->tmp_key;
DEBUG3 ("keylist_colon_handler ctx = %p, key = %p, line = %s\n",
ctx, key, line ? line : "(null)");
if (!line)
{
/* End Of File. */