X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Frelevance.c;h=92f51a88b3c38cc4a1821d1ecea51b192bde557c;hb=75027807cf88b7c47320c0ec051084c0a0188da6;hp=bc841e4e5e18396ee988824eb57343ca545a0205;hpb=8ca1269eac32c1ddc19d16dc4f74e9a1e3e0b8f9;p=pazpar2-moved-to-github.git diff --git a/src/relevance.c b/src/relevance.c index bc841e4..92f51a8 100644 --- a/src/relevance.c +++ b/src/relevance.c @@ -1,5 +1,22 @@ -/* - * $Id: relevance.c,v 1.8 2007-01-15 04:34:28 quinn Exp $ +/* $Id: relevance.c,v 1.10 2007-04-16 13:54:55 marc Exp $ + Copyright (c) 2006-2007, Index Data. + +This file is part of Pazpar2. + +Pazpar2 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 +Software Foundation; either version 2, or (at your option) any later +version. + +Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +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 Pazpar2; see the file LICENSE. If not, write to the +Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. */ #include @@ -46,6 +63,7 @@ static struct word_trie *create_word_trie_node(NMEM nmem) static void word_trie_addterm(NMEM nmem, struct word_trie *n, const char *term, int num) { + while (*term) { int c = tolower(*term); if (c < 'a' || c > 'z')