X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_bool.c;fp=src%2Fodr_bool.c;h=f02cbdd516a017f7e64480e28d791529087c0d71;hp=d1582f580366770a3290925a58dd24b4df95c7a3;hb=fb6d99a0c7e07d9cc4a315c447deaf6564a85505;hpb=67002f49611adb64993391b0cbf6c235f18080a4 diff --git a/src/odr_bool.c b/src/odr_bool.c index d1582f5..f02cbdd 100644 --- a/src/odr_bool.c +++ b/src/odr_bool.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: odr_bool.c,v 1.4 2005-01-15 19:47:14 adam Exp $ + * $Id: odr_bool.c,v 1.5 2005-06-25 15:46:04 adam Exp $ */ /** @@ -25,25 +25,33 @@ int odr_bool(ODR o, int **p, int opt, const char *name) int res, cons = 0; if (o->error) - return 0; + return 0; if (o->t_class < 0) { - o->t_class = ODR_UNIVERSAL; - o->t_tag = ODR_BOOLEAN; + o->t_class = ODR_UNIVERSAL; + o->t_tag = ODR_BOOLEAN; } if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt, name)) < 0) - return 0; + return 0; if (!res) - return odr_missing(o, opt, name); + return odr_missing(o, opt, name); if (o->direction == ODR_PRINT) { - odr_prname(o, name); - odr_printf(o, "%s\n", (**p ? "TRUE" : "FALSE")); - return 1; + odr_prname(o, name); + odr_printf(o, "%s\n", (**p ? "TRUE" : "FALSE")); + return 1; } if (cons) - return 0; + return 0; if (o->direction == ODR_DECODE) - *p = (int *)odr_malloc(o, sizeof(int)); + *p = (int *)odr_malloc(o, sizeof(int)); return ber_boolean(o, *p); } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +