X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fber_null.c;h=3d743ae621ee8d53590b87bf21664e7337c04a5b;hb=db93359f0cbf9a1e9dc81ea05f7b8662f843ae3d;hp=526e4917c4cef615bf10ed1d3fb673fb318a8dfc;hpb=4c176312acdc3444c9afc820f76a393e64668e52;p=yaz-moved-to-github.git diff --git a/src/ber_null.c b/src/ber_null.c index 526e491..3d743ae 100644 --- a/src/ber_null.c +++ b/src/ber_null.c @@ -1,8 +1,8 @@ /* - * Copyright (C) 1995-2005, Index Data ApS + * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: ber_null.c,v 1.3 2005-01-15 19:47:11 adam Exp $ + * $Id: ber_null.c,v 1.6 2007-01-03 08:42:15 adam Exp $ */ /** @@ -28,9 +28,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 +40,19 @@ 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 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +