X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Fnormalize_cache.c;h=7cbc14b96a9a535b0af739a4eaaa9da132c8da6d;hb=e3d8ed2a9688b50e22e71755d83984659879ecf3;hp=2d69f3337bcce524f7fc754888a9b7ac8b5c20f7;hpb=848a659ecc0b24d1881c3f091393b99259130aa7;p=pazpar2-moved-to-github.git diff --git a/src/normalize_cache.c b/src/normalize_cache.c index 2d69f33..7cbc14b 100644 --- a/src/normalize_cache.c +++ b/src/normalize_cache.c @@ -1,5 +1,5 @@ /* This file is part of Pazpar2. - Copyright (C) 2006-2012 Index Data + Copyright (C) 2006-2013 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 @@ -57,7 +57,7 @@ normalize_cache_t normalize_cache_create(void) normalize_record_t normalize_cache_get(normalize_cache_t nc, struct conf_service *service, - const char *spec, int embed) + const char *spec) { normalize_record_t nt; struct cached_item *ci; @@ -70,7 +70,7 @@ normalize_record_t normalize_cache_get(normalize_cache_t nc, nt = ci->nt; else { - nt = normalize_record_create(service, spec, embed); + nt = normalize_record_create(service, spec); if (nt) { ci = nmem_malloc(nc->nmem, sizeof(*ci));