BSD 4_3_Net_2 release
[unix-history] / usr / src / contrib / isode / pepsy / pepsy_strings.c
CommitLineData
74441096
C
1/* pepy_strings.c - constant strings used in pepy */
2
3#ifndef lint
4static char *rcsid = "$Header: /f/osi/pepsy/RCS/pepsy_strings.c,v 7.1 91/02/22 09:49:50 mrose Interim $";
5#endif
6
7/*
8 * $Header: /f/osi/pepsy/RCS/pepsy_strings.c,v 7.1 91/02/22 09:49:50 mrose Interim $
9 *
10 *
11 * $Log: pepsy_strings.c,v $
12 * Revision 7.1 91/02/22 09:49:50 mrose
13 * Interim 6.8
14 *
15 * Revision 7.0 90/07/01 19:54:28 mrose
16 * *** empty log message ***
17 *
18 * Revision 7.0 89/11/23 22:11:54 mrose
19 * Release 6.0
20 *
21 */
22
23/*
24 * NOTICE
25 *
26 * Acquisition, use, and distribution of this module and related
27 * materials are subject to the restrictions of a license agreement.
28 * Consult the Preface in the User's Manual for the full terms of
29 * this agreement.
30 *
31 */
32
33char *pepy_strings[] = {
34 "bad ", /* PEPY_ERR_BAD */
35 "bad bitstring: ", /* PEPY_ERR_BAD_BITS */
36 "bad boolean: ", /* PEPY_ERR_BAD_BOOLEAN */
37 "bad class/id: ", /* PEPY_ERR_BAD_CLASS */
38 "bad class/form/id: ", /* PEPY_ERR_BAD_CLASS_FORM_ID */
39 "bad form ", /* PEPY_ERR_BAD_FORM */
40 "bad integer: ", /* PEPY_ERR_BAD_INTEGER */
41 "bad object identifier: ", /* PEPY_ERR_BAD_OID */
42 "bad octetstring: ", /* PEPY_ERR_BAD_OCTET */
43 "bad real: ", /* PEPY_ERR_BAD_REAL */
44 "bad sequence: ", /* PEPY_ERR_BAD_SEQ */
45 "bad set: ", /* PEPY_ERR_BAD_SET */
46 "has too many bits", /* PEPY_ERR_TOO_MANY_BITS */
47 "has too many elements", /* PEPY_ERR_TOO_MANY_ELEMENTS */
48 "has unknown choice: ", /* PEPY_ERR_UNKNOWN_CHOICE */
49 "has unknown component: ", /* PEPY_ERR_UNK_COMP */
50 "initialization fails", /* PEPY_ERR_INIT_FAILED */
51 "invalid choice selected: ", /* PEPY_ERR_INVALID_CHOICE */
52 "missing ", /* PEPY_ERR_MISSING */
53 "out of memory", /* PEPY_ERR_NOMEM */
54 "too many elements for tagged ", /* PEPY_ERR_TOO_MANY_TAGGED */
55 "warning: extra or duplicate members present in SET",
56 /* PEPY_ERR_EXTRA_MEMBERS */
57 (char *)0
58};
59
60