X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fotherinfo.c;h=12be1294e7ecb528ce7fb77e861c71c21e75a29f;hp=7aac192497f847849a3a7fdbb7c2f13074315c20;hb=2715f6522ca62ab5dbc886c21ed18945743216f0;hpb=7a4064cd15f6c6b34c1180e1bc51f0d0e90da320 diff --git a/src/otherinfo.c b/src/otherinfo.c index 7aac192..12be129 100644 --- a/src/otherinfo.c +++ b/src/otherinfo.c @@ -1,13 +1,15 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2011 Index Data * See the file LICENSE for details. - * - * $Id: otherinfo.c,v 1.7 2007-04-12 13:52:57 adam Exp $ */ /** * \file otherinfo.c * \brief Implements Z39.50 OtherInfo utilities */ +#if HAVE_CONFIG_H +#include +#endif + #include #include @@ -71,9 +73,9 @@ void yaz_oi_APDU(Z_APDU *apdu, Z_OtherInformation ***oip) } } -Z_OtherInformationUnit *yaz_oi_update ( +Z_OtherInformationUnit *yaz_oi_update( Z_OtherInformation **otherInformationP, ODR odr, - const int *oid, int categoryValue, int delete_flag) + const Odr_oid *oid, int categoryValue, int delete_flag) { int i; Z_OtherInformation *otherInformation; @@ -94,6 +96,7 @@ Z_OtherInformationUnit *yaz_oi_update ( { if (!oid) { + /* DS: Want does this do? Returns the first element without a category */ if (!otherInformation->list[i]->category) return otherInformation->list[i]; } @@ -138,12 +141,10 @@ Z_OtherInformationUnit *yaz_oi_update ( { otherInformation->list[i]->category = (Z_InfoCategory*) odr_malloc (odr, sizeof(Z_InfoCategory)); - otherInformation->list[i]->category->categoryTypeId = (int*) + otherInformation->list[i]->category->categoryTypeId = (Odr_oid*) odr_oiddup (odr, oid); - otherInformation->list[i]->category->categoryValue = (int*) - odr_malloc (odr, sizeof(int)); - *otherInformation->list[i]->category->categoryValue = - categoryValue; + otherInformation->list[i]->category->categoryValue = + odr_intdup(odr, categoryValue); } else otherInformation->list[i]->category = 0; @@ -157,7 +158,7 @@ Z_OtherInformationUnit *yaz_oi_update ( void yaz_oi_set_string_oid ( Z_OtherInformation **otherInformation, ODR odr, - const int *oid, int categoryValue, + const Odr_oid *oid, int categoryValue, const char *str) { Z_OtherInformationUnit *oi = @@ -170,7 +171,7 @@ void yaz_oi_set_string_oid ( char *yaz_oi_get_string_oid ( Z_OtherInformation **otherInformation, - const int *oid, int categoryValue, int delete_flag) + const Odr_oid *oid, int categoryValue, int delete_flag) { Z_OtherInformationUnit *oi; @@ -181,9 +182,11 @@ char *yaz_oi_get_string_oid ( return 0; } + /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab