From 233020e68e58b86aaed62598408a42ae5a27eabc Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 6 May 2003 13:09:15 +0000 Subject: [PATCH] Fix check --- odr/tstodr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/odr/tstodr.c b/odr/tstodr.c index f302b20..1b36a5e 100644 --- a/odr/tstodr.c +++ b/odr/tstodr.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2003, Index Data * See the file LICENSE for details. * - * $Id: tstodr.c,v 1.1 2003-05-06 10:08:30 adam Exp $ + * $Id: tstodr.c,v 1.2 2003-05-06 13:09:15 adam Exp $ * */ #include @@ -30,7 +30,7 @@ void tst_MySequence(ODR encode, ODR decode) ber_buf = odr_getbuf(encode, &ber_len, 0); - odr_setbuf(decode, ber_buf, ber_len, 1); + odr_setbuf(decode, ber_buf, ber_len, 0); if (!yc_MySequence(decode, &t, 0, 0)) exit(2); -- 1.7.10.4