X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=util%2Foid.c;h=a7f6914db63c82bad19d988bf4f806141185ef86;hb=4c6462484342ee50f5d26f9fb3a625481b3d5bba;hp=6ad4477fe283c4a81de46a71ae42a2ca1876dbdb;hpb=c7eb63e9060187fbba904c3da9697ff85f919af4;p=yaz-moved-to-github.git diff --git a/util/oid.c b/util/oid.c index 6ad4477..a7f6914 100644 --- a/util/oid.c +++ b/util/oid.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2003, Index Data * See the file LICENSE for details. * - * $Id: oid.c,v 1.60 2003-04-03 21:01:28 mike Exp $ + * $Id: oid.c,v 1.62 2003-06-02 12:53:28 adam Exp $ */ /* @@ -224,8 +224,10 @@ static oident standard_oids[] = "Per'd query"}, {PROTO_Z3950, CLASS_EXTSERV, VAL_ITEMORDER, {9,4,-1}, "Item order"}, - {PROTO_Z3950, CLASS_EXTSERV, VAL_DBUPDATE0, {9,5,1,-1}, - "DB. Update (old version)"}, + {PROTO_Z3950, CLASS_EXTSERV, VAL_DBUPDATE0, {9,5,-1}, + "DB. Update (first version)"}, + {PROTO_Z3950, CLASS_EXTSERV, VAL_DBUPDATE1, {9,5,1,-1}, + "DB. Update (second version)"}, {PROTO_Z3950, CLASS_EXTSERV, VAL_DBUPDATE, {9,5,1,1,-1}, "DB. Update"}, {PROTO_Z3950, CLASS_EXTSERV, VAL_EXPORTSPEC, {9,6,-1}, @@ -358,14 +360,14 @@ static int match_prefix(int *look, int *prefix) return 0; } -void oid_transfer (struct oident *oident) +void oid_transfer (struct oident *oidentp) { - while (*oident->oidsuffix >= 0) + while (*oidentp->oidsuffix >= 0) { - oid_addent (oident->oidsuffix, oident->proto, - oident->oclass, - oident->desc, oident->value); - oident++; + oid_addent (oidentp->oidsuffix, oidentp->proto, + oidentp->oclass, + oidentp->desc, oidentp->value); + oidentp++; } }