diff options
Diffstat (limited to '')
-rw-r--r-- | g10/revoke.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/g10/revoke.c b/g10/revoke.c index d33e2f4b7..b973ff6cc 100644 --- a/g10/revoke.c +++ b/g10/revoke.c @@ -1,5 +1,6 @@ /* revoke.c - * Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. + * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, + * 2004 Free Software Foundation, Inc. * * This file is part of GnuPG. * @@ -89,7 +90,7 @@ export_minimal_pk(IOBUF out,KBNODE keyblock, node=find_kbnode(keyblock,PKT_PUBLIC_KEY); if(!node) { - log_error(_("key incomplete\n")); + log_error("key incomplete\n"); return G10ERR_GENERAL; } @@ -142,7 +143,7 @@ export_minimal_pk(IOBUF out,KBNODE keyblock, break; else { - log_error(_("key %08lX incomplete\n"),(ulong)keyid[1]); + log_error(_("key %s has no user IDs\n"),keystr(keyid)); return G10ERR_GENERAL; } } |