X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=data1%2Fd1_attset.c;h=291acd938ce74572d9e8f11fa21156008dc9ebe5;hb=20e2d608e0cd383054e627db00264388affb58cd;hp=8eb17e110e1a42d888b565403e7059c2e443af86;hpb=a66b7d79383ae700f3358731eecfe2aafed0e90d;p=idzebra-moved-to-github.git diff --git a/data1/d1_attset.c b/data1/d1_attset.c index 8eb17e1..291acd9 100644 --- a/data1/d1_attset.c +++ b/data1/d1_attset.c @@ -1,5 +1,5 @@ /* This file is part of the Zebra server. - Copyright (C) 1994-2010 Index Data + Copyright (C) 1994-2011 Index Data Zebra is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -17,6 +17,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#if HAVE_CONFIG_H +#include +#endif #include #include #include @@ -29,7 +32,7 @@ data1_att *data1_getattbyname(data1_handle dh, data1_attset *s, const char *name { data1_att *r; data1_attset_child *c; - + /* scan local set */ for (r = s->atts; r; r = r->next) if (!data1_matchstr(r->name, name)) @@ -84,7 +87,7 @@ data1_attset *data1_read_attset(data1_handle dh, const char *file) char *name; char *endptr; data1_att *t; - + if (argc < 3) { yaz_log(YLOG_WARN, "%s:%d: Bad # of args to att", file, lineno); @@ -103,7 +106,7 @@ data1_attset *data1_read_attset(data1_handle dh, const char *file) continue; } name = argv[2]; - + t = *attp = (data1_att *)nmem_malloc(mem, sizeof(*t)); t->parent = res; t->name = nmem_strdup(mem, name); @@ -164,7 +167,7 @@ data1_attset *data1_read_attset(data1_handle dh, const char *file) yaz_log(YLOG_WARN, "%s:%d: Include of attset %s failed", file, lineno, name); continue; - + } *childp = (data1_attset_child *) nmem_malloc (mem, sizeof(**childp));