X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fber_null.c;h=6e54de3ba8fd23ba8545a197bf6f44a2fdae825e;hp=3d743ae621ee8d53590b87bf21664e7337c04a5b;hb=5c1eb188e9cf6f0dd2e435a1f81938f258515edb;hpb=8d691989077a0addcbd840d769dce6700f3d9622 diff --git a/src/ber_null.c b/src/ber_null.c index 3d743ae..6e54de3 100644 --- a/src/ber_null.c +++ b/src/ber_null.c @@ -1,11 +1,9 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) Index Data * See the file LICENSE for details. - * - * $Id: ber_null.c,v 1.6 2007-01-03 08:42:15 adam Exp $ */ -/** +/** * \file ber_null.c * \brief Implements ber_null * @@ -18,7 +16,7 @@ #include "odr-priv.h" -/** +/** * ber_null: BER-en/decoder for NULL type. */ int ber_null(ODR o) @@ -35,7 +33,7 @@ int ber_null(ODR o) odr_seterror(o, OPROTO, 39); return 0; } - if (*(o->bp++) != 0X00) + if (*(o->op->bp++) != 0X00) { odr_seterror(o, OPROTO, 12); return 0; @@ -51,6 +49,7 @@ int ber_null(ODR o) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab