X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fodr_int.c;h=8c4b158176ea23ace4d251d64d7534244e8c47d8;hb=3b792849c676d96918850e2f1e0af87a75278501;hp=9e21a2571e748d59572501eb85bdfe6e4c186019;hpb=0a7d4354288c747883261e9f430a7e0069225a5b;p=yaz-moved-to-github.git diff --git a/src/odr_int.c b/src/odr_int.c index 9e21a25..8c4b158 100644 --- a/src/odr_int.c +++ b/src/odr_int.c @@ -1,9 +1,12 @@ /* - * Copyright (c) 1995-2003, Index Data + * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. - * Sebastian Hammer, Adam Dickmeiss * - * $Id: odr_int.c,v 1.2 2004-08-11 12:15:38 adam Exp $ + * $Id: odr_int.c,v 1.7 2007-03-19 21:08:13 adam Exp $ + */ +/** + * \file odr_int.c + * \brief Implements ODR INTEGER codec */ #if HAVE_CONFIG_H #include @@ -21,18 +24,19 @@ int odr_integer(ODR o, int **p, int opt, const char *name) if (o->error) return 0; - if (o->t_class < 0) + if (o->op->t_class < 0) { - o->t_class = ODR_UNIVERSAL; - o->t_tag = ODR_INTEGER; + o->op->t_class = ODR_UNIVERSAL; + o->op->t_tag = ODR_INTEGER; } - if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt, name)) < 0) + res = ber_tag(o, p, o->op->t_class, o->op->t_tag, &cons, opt, name); + if (res < 0) return 0; if (!res) return odr_missing(o, opt, name); if (o->direction == ODR_PRINT) { - odr_prname(o, name); + odr_prname(o, name); odr_printf(o, "%d\n", **p); return 1; } @@ -45,3 +49,11 @@ int odr_integer(ODR o, int **p, int opt, const char *name) *p = (int *)odr_malloc(o, sizeof(int)); return ber_integer(o, *p); } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +