X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fodr_null.c;h=ef2eb08c545a82e0dfa9670f847554b700e17f01;hb=5c3d2d2ab097e4bb59ba5718a396b020a2d302c0;hp=cc33ff77eb68e57723ea773c05a7847f427c6cea;hpb=c6e47cbbff56f39f6d81b079ebaeac41d793d4d9;p=yaz-moved-to-github.git diff --git a/src/odr_null.c b/src/odr_null.c index cc33ff7..ef2eb08 100644 --- a/src/odr_null.c +++ b/src/odr_null.c @@ -1,9 +1,12 @@ /* - * Copyright (c) 1995-2003, Index Data + * Copyright (c) 1995-2004, Index Data * See the file LICENSE for details. - * Sebastian Hammer, Adam Dickmeiss * - * $Id: odr_null.c,v 1.1 2003-10-27 12:21:33 adam Exp $ + * $Id: odr_null.c,v 1.4 2004-10-15 00:19:00 adam Exp $ + */ +/** + * \file odr_null.c + * \brief Implements ODR NULL codec */ #if HAVE_CONFIG_H #include @@ -33,7 +36,7 @@ int odr_null(ODR o, Odr_null **p, int opt, const char *name) if (o->direction == ODR_PRINT) { odr_prname(o, name); - fprintf(o->print, "NULL\n"); + odr_printf(o, "NULL\n"); return 1; } if (cons) @@ -42,7 +45,7 @@ int odr_null(ODR o, Odr_null **p, int opt, const char *name) odr_seterror(OPROTO, 42); return 0; #else - fprintf(stderr, "odr: Warning: Bad NULL\n"); + /* Warning: Bad NULL */ #endif } if (o->direction == ODR_DECODE)