X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/052b36d05a622a93733b735acce2de865b14627b..15f2115520c175d46988d9a63602c3a2d84a2826:/key-error.c diff --git a/key-error.c b/key-error.c index 8ca934e..b114798 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$ * * Translating key error codes into strings * @@ -27,17 +27,10 @@ * 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 "key.h" +#include +#include "key-error.h" /*----- Error reporting ---------------------------------------------------*/ @@ -62,13 +55,20 @@ 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", + "Malformed key data", + "I/O errror", "Unknown error code" }; unsigned e = -err; - if (e >= KERR_MAX) - e = KERR_MAX; + if (e >= N(tab)) + e = N(tab); return (tab[e]); }