From: Sebastian Hammer Date: Tue, 10 Oct 1995 16:27:06 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: YAZ.1.8~901 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=80c35fec715148c1c4547cf62aa6e2558884611a *** empty log message *** --- diff --git a/include/log.h b/include/log.h index 7476f0b..e98def4 100644 --- a/include/log.h +++ b/include/log.h @@ -24,7 +24,10 @@ * OF THIS SOFTWARE. * * $Log: log.h,v $ - * Revision 1.5 1995-09-29 17:12:03 quinn + * Revision 1.6 1995-10-10 16:27:06 quinn + * *** empty log message *** + * + * Revision 1.5 1995/09/29 17:12:03 quinn * Smallish * * Revision 1.4 1995/09/27 15:02:47 quinn @@ -57,6 +60,7 @@ #define LOG_H #include +#include #define LOG_FATAL 0x0001 #define LOG_DEBUG 0x0002 diff --git a/include/oid.h b/include/oid.h index 1d90a46..ffee3c5 100644 --- a/include/oid.h +++ b/include/oid.h @@ -24,7 +24,10 @@ * OF THIS SOFTWARE. * * $Log: oid.h,v $ - * Revision 1.7 1995-09-29 17:12:05 quinn + * Revision 1.8 1995-10-10 16:27:08 quinn + * *** empty log message *** + * + * Revision 1.7 1995/09/29 17:12:05 quinn * Smallish * * Revision 1.6 1995/09/27 15:02:48 quinn @@ -132,7 +135,8 @@ typedef struct oident VAL_EXPORTINV, VAL_NONE, VAL_SETM, - VAL_SETG + VAL_SETG, + VAL_VAR1 } value; int oidsuffix[20]; char *desc; diff --git a/util/oid.c b/util/oid.c index 84d4061..3df84ba 100644 --- a/util/oid.c +++ b/util/oid.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: oid.c,v $ - * Revision 1.6 1995-09-29 17:12:35 quinn + * Revision 1.7 1995-10-10 16:27:12 quinn + * *** empty log message *** + * + * Revision 1.6 1995/09/29 17:12:35 quinn * Smallish * * Revision 1.5 1995/09/29 17:01:51 quinn @@ -105,6 +108,7 @@ static oident oids[] = {PROTO_Z3950, CLASS_EXTSERV, VAL_DBUPDATE, {9,5,-1}, "DB. Update" }, {PROTO_Z3950, CLASS_EXTSERV, VAL_EXPORTSPEC,{9,6,-1}, "exp. spec." }, {PROTO_Z3950, CLASS_EXTSERV, VAL_EXPORTINV, {9,7,-1}, "exp. inv." }, + {PROTO_Z3950, CLASS_VARSET, VAL_VAR1, {12,1,-1}, "Variant-1" }, {PROTO_Z3950, CLASS_TAGSET, VAL_SETM, {14,1,-1}, "TagsetM" }, {PROTO_Z3950, CLASS_TAGSET, VAL_SETG, {14,2,-1}, "TagsetG" }, @@ -158,6 +162,7 @@ static oident oids[] = {PROTO_SR, CLASS_EXTSERV, VAL_DBUPDATE, {9,5,-1}, "DB. Update" }, {PROTO_SR, CLASS_EXTSERV, VAL_EXPORTSPEC,{9,6,-1}, "exp. spec." }, {PROTO_SR, CLASS_EXTSERV, VAL_EXPORTINV, {9,7,-1}, "exp. inv." }, + {PROTO_SR, CLASS_VARSET, VAL_VAR1, {12,1,-1}, "Variant-1" }, {PROTO_SR, CLASS_TAGSET, VAL_SETM, {14,1,-1}, "TagsetM" }, {PROTO_SR, CLASS_TAGSET, VAL_SETG, {14,2,-1}, "TagsetG" },