From 3f7b54230a51be797c9439b091aa59133da16732 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 20 May 2003 17:22:54 +0000 Subject: [PATCH] Indentation --- odr/ber_any.c | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/odr/ber_any.c b/odr/ber_any.c index 00388cd..6094f9a 100644 --- a/odr/ber_any.c +++ b/odr/ber_any.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2003, Index Data * See the file LICENSE for details. * - * $Id: ber_any.c,v 1.24 2003-03-11 11:03:31 adam Exp $ + * $Id: ber_any.c,v 1.25 2003-05-20 17:22:54 adam Exp $ */ #if HAVE_CONFIG_H #include @@ -13,25 +13,25 @@ int ber_any(ODR o, Odr_any **p) { int res; - + switch (o->direction) { - case ODR_DECODE: - if ((res = completeBER(o->bp, odr_max(o))) <= 0) /* FIX THIS */ - { - odr_seterror(o, OPROTO, 2); - return 0; - } - (*p)->buf = (unsigned char *)odr_malloc(o, res); - memcpy((*p)->buf, o->bp, res); - (*p)->len = (*p)->size = res; - o->bp += res; - return 1; - case ODR_ENCODE: - if (odr_write(o, (*p)->buf, (*p)->len) < 0) - return 0; - return 1; - default: odr_seterror(o, OOTHER, 3); return 0; + case ODR_DECODE: + if ((res = completeBER(o->bp, odr_max(o))) <= 0) /* FIX THIS */ + { + odr_seterror(o, OPROTO, 2); + return 0; + } + (*p)->buf = (unsigned char *)odr_malloc(o, res); + memcpy((*p)->buf, o->bp, res); + (*p)->len = (*p)->size = res; + o->bp += res; + return 1; + case ODR_ENCODE: + if (odr_write(o, (*p)->buf, (*p)->len) < 0) + return 0; + return 1; + default: odr_seterror(o, OOTHER, 3); return 0; } } -- 1.7.10.4