X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fber_null.c;h=91dc5f4172c67a17db60d4998db0351b462041b5;hp=3e694b65eb82355f8c0aa1ede37a06c2e2f86b60;hb=43a9d38d20c1b1bcd1a03b2445a501d27526bd35;hpb=05c274ef315384faafcc5900c17468f0ea2474e6 diff --git a/src/ber_null.c b/src/ber_null.c index 3e694b6..91dc5f4 100644 --- a/src/ber_null.c +++ b/src/ber_null.c @@ -1,8 +1,6 @@ -/* - * Copyright (c) 1995-2004, Index Data +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2011 Index Data * See the file LICENSE for details. - * - * $Id: ber_null.c,v 1.2 2004-10-15 00:18:59 adam Exp $ */ /** @@ -28,9 +26,6 @@ int ber_null(ODR o) case ODR_ENCODE: if (odr_putc(o, 0X00) < 0) return 0; -#ifdef ODR_DEBUG - fprintf(stderr, "[NULL]\n"); -#endif return 1; case ODR_DECODE: if (odr_max(o) < 1) @@ -43,14 +38,20 @@ int ber_null(ODR o) odr_seterror(o, OPROTO, 12); return 0; } -#ifdef ODR_DEBUG - fprintf(stderr, "[NULL]\n"); -#endif return 1; case ODR_PRINT: - return 1; + return 1; default: - odr_seterror(o, OOTHER, 13); - return 0; + odr_seterror(o, OOTHER, 13); + return 0; } } +/* + * Local variables: + * c-basic-offset: 4 + * c-file-style: "Stroustrup" + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +