X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fber_null.c;h=44ec9bdfaf18d5d1e1befdc0c8f4702fc1a010cf;hb=bc384649b00fed1e378ac3f67b8b5e4872892942;hp=7797e13692fe1a050e978104f7b2c94af4975a84;hpb=fb6d99a0c7e07d9cc4a315c447deaf6564a85505;p=yaz-moved-to-github.git diff --git a/src/ber_null.c b/src/ber_null.c index 7797e13..44ec9bd 100644 --- a/src/ber_null.c +++ b/src/ber_null.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2005, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: ber_null.c,v 1.4 2005-06-25 15:46:03 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,9 +38,6 @@ 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;