gnupg/util/errors.c

102 lines
3.4 KiB
C
Raw Normal View History

1997-11-18 15:06:00 +01:00
/* errors.c - error strings
1998-02-24 19:50:46 +01:00
* Copyright (C) 1998 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
1998-02-24 19:50:46 +01:00
* This file is part of GNUPG.
1997-11-18 15:06:00 +01:00
*
1998-02-24 19:50:46 +01:00
* GNUPG is free software; you can redistribute it and/or modify
1997-11-18 15:06:00 +01:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
1998-02-24 19:50:46 +01:00
* GNUPG is distributed in the hope that it will be useful,
1997-11-18 15:06:00 +01:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include "errors.h"
1998-05-13 19:53:36 +02:00
#ifndef HAVE_STRERROR
char *
strerror( int n )
{
extern char *sys_errlist[];
extern int sys_nerr;
static char buf[15];
if( n >= 0 && n < sys_nerr )
return sys_errlist[n];
strcpy( buf, "Unknown error" );
return buf;
}
#endif /* !HAVE_STRERROR */
1997-11-18 15:06:00 +01:00
const char *
g10_errstr( int err )
{
static char buf[50];
const char *p;
#define X(n,s) case G10ERR_##n : p = s; break;
switch( err ) {
1998-01-16 22:15:24 +01:00
case -1: p = "eof"; break;
case 0: p = "okay"; break;
1997-11-18 15:06:00 +01:00
X(GENERAL, "General error")
X(UNKNOWN_PACKET, "Unknown packet type")
X(UNKNOWN_VERSION,"Unknown version")
X(PUBKEY_ALGO ,"Unknown pubkey algorithm")
X(DIGEST_ALGO ,"Unknown digest algorithm")
X(BAD_PUBKEY ,"Bad public key")
X(BAD_SECKEY ,"Bad secret key")
X(BAD_SIGN ,"Bad signature")
X(CHECKSUM , "Checksum error")
X(BAD_PASS , "Bad passphrase")
X(NO_PUBKEY ,"Public key not found")
X(CIPHER_ALGO ,"Unknown cipher algorithm")
X(KEYRING_OPEN ,"Can't open the keyring")
1998-01-16 22:15:24 +01:00
X(INVALID_PACKET ,"Invalid packet")
1998-07-06 12:23:57 +02:00
X(INVALID_ARMOR ,"Invalid armor")
1998-01-19 19:54:44 +01:00
X(NO_USER_ID ,"No such user id")
1997-11-18 15:06:00 +01:00
X(NO_SECKEY ,"Secret key not available")
X(WRONG_SECKEY ,"Wrong secret key used")
X(UNSUPPORTED ,"Not supported")
X(BAD_KEY ,"Bad key")
X(READ_FILE ,"File read error")
X(WRITE_FILE ,"File write error")
X(COMPR_ALGO ,"Unknown compress algorithm")
X(OPEN_FILE ,"File open error")
X(CREATE_FILE ,"File create error")
X(PASSPHRASE ,"Invalid passphrase")
X(NI_PUBKEY ,"Unimplemented pubkey algorithm")
X(NI_CIPHER ,"Unimplemented cipher algorithm")
1997-12-01 11:33:23 +01:00
X(SIG_CLASS ,"Unknown signature class")
1998-03-09 22:44:06 +01:00
X(TRUSTDB ,"Trust database error")
1998-07-06 12:23:57 +02:00
X(BAD_MPI ,"Bad MPI")
X(RESOURCE_LIMIT ,"Resource limit")
X(INV_KEYRING ,"Invalid keyring")
1998-01-16 22:15:24 +01:00
X(BAD_CERT ,"Bad certificate")
1998-03-09 22:44:06 +01:00
X(INV_USER_ID ,"Malformed user id")
X(CLOSE_FILE ,"File close error")
X(RENAME_FILE ,"File rename error")
X(DELETE_FILE ,"File delete error")
X(UNEXPECTED ,"Unexpected data")
1998-03-19 16:27:29 +01:00
X(TIME_CONFLICT ,"Timestamp conflict")
1998-04-08 21:49:02 +02:00
X(WR_PUBKEY_ALGO ,"Unusable pubkey algorithm")
1998-08-11 19:29:34 +02:00
X(FILE_EXISTS ,"File exists")
1998-09-14 17:49:56 +02:00
X(WEAK_KEY ,"Weak key")
1998-01-16 22:15:24 +01:00
default: p = buf; sprintf(buf, "g10err=%d", err); break;
1997-11-18 15:06:00 +01:00
}
#undef X
return p;
}