1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* keydb.h, getkey.c (get_user_id_native), import.c (import_one): Display

user ID while importing a key.  Note this applies to both --import and
keyserver --recv-keys.

* exec.c (exec_finish): Log unnatural exit (core dump, killed manually,
etc) for fork/exec/pipe child processes.
This commit is contained in:
David Shaw 2002-06-09 17:16:51 +00:00
parent fc0d796503
commit 3bff7c1d60
5 changed files with 54 additions and 17 deletions

View file

@ -2383,6 +2383,18 @@ get_user_id( u32 *keyid, size_t *rn )
return p;
}
char*
get_user_id_native( u32 *keyid )
{
size_t rn;
char *p = get_user_id( keyid, &rn );
char *p2 = utf8_to_native( p, rn, 0 );
m_free(p);
return p2;
}
KEYDB_HANDLE
get_ctx_handle(GETKEY_CTX ctx)
{