X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_tag.c;h=d5f96af8d5876e51c9815b505b1670b8b4e4fbe0;hp=3fe167b44fe24da10c1ac9bf6e3e597f64d6713f;hb=88d3bedf772316f87e1996f655ccf8d1e2589755;hpb=8d691989077a0addcbd840d769dce6700f3d9622 diff --git a/src/odr_tag.c b/src/odr_tag.c index 3fe167b..d5f96af 100644 --- a/src/odr_tag.c +++ b/src/odr_tag.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. - * - * $Id: odr_tag.c,v 1.6 2007-01-03 08:42:15 adam Exp $ */ /** * \file odr_tag.c @@ -35,10 +33,10 @@ int odr_implicit_settag(ODR o, int zclass, int tag) { if (o->error) return 0; - if (o->t_class < 0) + if (o->op->t_class < 0) { - o->t_class = zclass; - o->t_tag = tag; + o->op->t_class = zclass; + o->op->t_tag = tag; } return 1; } @@ -53,7 +51,7 @@ int odr_initmember(ODR o, void *p, int size) *pp = (char *)odr_malloc(o, size); else if (!*pp) { - o->t_class = -1; + o->op->t_class = -1; return 0; } return 1; @@ -61,6 +59,7 @@ int odr_initmember(ODR o, void *p, int size) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab