X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/052b36d05a622a93733b735acce2de865b14627b..578a86d91941a0f722b87973d88e84ec2cf9a608:/key-error.c diff --git a/key-error.c b/key-error.c index 8ca934e..75e4246 100644 --- a/key-error.c +++ b/key-error.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: key-error.c,v 1.1 2000/02/12 18:21:02 mdw Exp $ + * $Id: key-error.c,v 1.4 2004/04/08 01:36:15 mdw Exp $ * * Translating key error codes into strings * @@ -27,16 +27,9 @@ * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: key-error.c,v $ - * Revision 1.1 2000/02/12 18:21:02 mdw - * Overhaul of key management (again). - * - */ - /*----- Header files ------------------------------------------------------*/ +#include #include "key.h" /*----- Error reporting ---------------------------------------------------*/ @@ -62,13 +55,18 @@ const char *key_strerror(int err) "Key tag already exists", "Key file is read-only", "Key will eventually expire", + "Key has expired", "Bad key flags string", + "Failed to unlock encrypted key", + "Unexpected key encoding type", + "Key not found", + "Bad attribute name", "Unknown error code" }; unsigned e = -err; - if (e >= KERR_MAX) - e = KERR_MAX; + if (e >= N(tab)) + e = N(tab); return (tab[e]); }