X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_util.c;h=39591063d28b3856fb2b41665cb8a1ec04bb34b9;hp=58b60cb0527a57bbd2ca52b2762347afd3df59f1;hb=df60350f9737923dce347e59b9c4cafa789ab7aa;hpb=82fade1c1b7531cda93c908e33d9af8b9fd91a6f diff --git a/src/odr_util.c b/src/odr_util.c index 58b60cb..3959106 100644 --- a/src/odr_util.c +++ b/src/odr_util.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2012 Index Data + * Copyright (C) Index Data * See the file LICENSE for details. */ /** @@ -26,22 +26,22 @@ void odr_prname(ODR o, const char *name) odr_printf(o, "%s ", name); } -int odp_more_chunks(ODR o, const unsigned char *base, int len) +int odp_more_chunks(ODR o, const char *base, int len) { if (!len) return 0; if (len < 0) /* indefinite length */ { - if (*o->bp == 0 && *(o->bp + 1) == 0) + if (*o->op->bp == 0 && *(o->op->bp + 1) == 0) { - o->bp += 2; + o->op->bp += 2; return 0; } else return 1; } else - return o->bp - base < len; + return o->op->bp - base < len; } Odr_oid *odr_oiddup_nmem(NMEM nmem, const Odr_oid *o) @@ -108,12 +108,11 @@ char *odr_prepend(ODR o, const char *prefix, const char *old) *res = '\0'; if (plen > 0) - strcpy (res, prefix); + strcpy(res, prefix); if (plen > 0 && old != 0) - strcat (res, "/"); - if (old !=0) - strcat (res, old); - + strcat(res, "/"); + if (old != 0) + strcat(res, old); return res; } /*