X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Ftermlists.c;h=ea93130a6c40229bb2b5c9944ecd8c677bc5a0b2;hb=512a11133b1ccc4a44d6e971c8a446865136bb15;hp=0b870bb1aab4bf8371203d313759562065fd704b;hpb=dd072ff41444dfdd49c76ecc3ca634b06cb75dd1;p=pazpar2-moved-to-github.git diff --git a/src/termlists.c b/src/termlists.c index 0b870bb..ea93130 100644 --- a/src/termlists.c +++ b/src/termlists.c @@ -1,5 +1,5 @@ /* This file is part of Pazpar2. - Copyright (C) 2006-2011 Index Data + Copyright (C) 2006-2012 Index Data 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 @@ -118,9 +118,10 @@ void termlist_insert(struct termlist *tl, const char *display_term, return; strcpy(buf, norm_term); /* chop right */ + /* for (cp = buf + strlen(buf); cp != buf && strchr(",. -", cp[-1]); cp--) cp[-1] = '\0'; - + */ bucket = jenkins_hash((unsigned char *)buf) % tl->hash_size; for (p = &tl->hashtable[bucket]; *p; p = &(*p)->next) {