X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=util%2Foid.c;h=e6236e4a15248ef87a783bd3e22e5a1f9e2ad89c;hp=6ad4477fe283c4a81de46a71ae42a2ca1876dbdb;hb=32882a6e0491347b494586011a5df7bfadbc6675;hpb=72a7de6dfe07d7079de3c287aecdeb0f164c78b8 diff --git a/util/oid.c b/util/oid.c index 6ad4477..e6236e4 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.61 2003-05-26 13:36:48 adam Exp $ */ /* @@ -358,14 +358,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++; } }