X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=data1%2Fd1_sumout.c;h=77677de1adab516d978f8344f8daff2fc7f285ce;hb=3c90610273e17a844c227984b4fc4107fad305ca;hp=fc2aca599c2ee4393e6197effd064b636c9d19c8;hpb=02266b68e2e2c86d8a8467ee56721926b365d2d0;p=idzebra-moved-to-github.git diff --git a/data1/d1_sumout.c b/data1/d1_sumout.c index fc2aca5..77677de 100644 --- a/data1/d1_sumout.c +++ b/data1/d1_sumout.c @@ -1,6 +1,6 @@ -/* $Id: d1_sumout.c,v 1.2 2002-10-22 13:19:50 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 - Index Data Aps +/* $Id: d1_sumout.c,v 1.9 2007-01-15 15:10:14 adam Exp $ + Copyright (C) 1995-2007 + Index Data ApS This file is part of the Zebra server. @@ -15,9 +15,9 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with Zebra; see the file LICENSE.zebra. If not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ #include @@ -26,7 +26,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #include -#include +#include static int *f_integer(data1_node *c, ODR o) { @@ -63,7 +63,7 @@ Z_BriefBib *data1_nodetosummary (data1_handle dh, data1_node *n, assert(n->which == DATA1N_root); if (strcmp(n->u.root.type, "summary")) { - yaz_log(LOG_WARN, "Attempt to convert a non-summary record"); + yaz_log(YLOG_WARN, "Attempt to convert a non-summary record"); return 0; } @@ -87,7 +87,7 @@ Z_BriefBib *data1_nodetosummary (data1_handle dh, data1_node *n, { if (c->which != DATA1N_tag || !c->u.tag.element) { - yaz_log(LOG_WARN, "Malformed element in Summary record"); + yaz_log(YLOG_WARN, "Malformed element in Summary record"); return 0; } if (select && !c->u.tag.node_selected) @@ -109,8 +109,16 @@ Z_BriefBib *data1_nodetosummary (data1_handle dh, data1_node *n, case 16: res->abstract = f_string(c, o); break; case 17: abort(); /* TODO */ default: - yaz_log(LOG_WARN, "Unknown element in Summary record."); + yaz_log(YLOG_WARN, "Unknown element in Summary record."); } } return res; } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +