X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_enum.c;h=1b3f81f29dedc7f6d18b6b75e286882f3c640fbf;hp=45710f6604a48a835c1fc650750b081ff186e22d;hb=e4368af2ede9079d33e7a8fd280d29b2bde1d1ad;hpb=c6e47cbbff56f39f6d81b079ebaeac41d793d4d9 diff --git a/src/odr_enum.c b/src/odr_enum.c index 45710f6..1b3f81f 100644 --- a/src/odr_enum.c +++ b/src/odr_enum.c @@ -1,9 +1,12 @@ /* - * Copyright (c) 1995-2003, Index Data + * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. - * Sebastian Hammer, Adam Dickmeiss * - * $Id: odr_enum.c,v 1.1 2003-10-27 12:21:33 adam Exp $ + * $Id: odr_enum.c,v 1.5 2005-06-25 15:46:04 adam Exp $ + */ +/** + * \file odr_enum.c + * \brief Implements ODR ENUM codec */ #if HAVE_CONFIG_H #include @@ -32,8 +35,8 @@ int odr_enum(ODR o, int **p, int opt, const char *name) return odr_missing(o, opt, name); if (o->direction == ODR_PRINT) { - odr_prname(o, name); - fprintf(o->print, "%d\n", **p); + odr_prname(o, name); + odr_printf(o, "%d\n", **p); return 1; } if (cons) @@ -45,3 +48,11 @@ int odr_enum(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 + */ +