X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fpazpar2_config.c;h=8068b13cbc141860009dfa2dd580ace49b66e553;hb=e3d8ed2a9688b50e22e71755d83984659879ecf3;hp=e3f99b8237052f69c6bfc702793e6d22b5b0829e;hpb=31b01bfc5e77f090135d7a66739b057052a1c845;p=pazpar2-moved-to-github.git diff --git a/src/pazpar2_config.c b/src/pazpar2_config.c index e3f99b8..8068b13 100644 --- a/src/pazpar2_config.c +++ b/src/pazpar2_config.c @@ -45,7 +45,6 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include "settings.h" #include "eventl.h" #include "http.h" -#include "session.h" struct conf_config { @@ -282,8 +281,6 @@ void service_destroy(struct conf_service *service) void service_incref(struct conf_service *service) { - yaz_log(YLOG_LOG, "service_incref. p=%p cnt=%d", service, - service->ref_count); pazpar2_incref(&service->ref_count, service->mutex); } @@ -987,7 +984,7 @@ struct conf_service *locate_service(struct conf_server *server, return s; } -void info_service_metadata(struct conf_service *service, WRBUF w) +static void info_service_metadata(struct conf_service *service, WRBUF w) { int i; struct conf_metadata *md; @@ -1082,7 +1079,7 @@ void info_service_metadata(struct conf_service *service, WRBUF w) } } -void info_service_databases(struct conf_service *service, WRBUF w) +static void info_service_databases(struct conf_service *service, WRBUF w) { struct database *db; struct setting *s; @@ -1127,7 +1124,6 @@ void info_services(struct conf_server *server, WRBUF w) struct conf_service *s = server->service; int i; struct setting *S; - struct database *db; wrbuf_puts(w, " \n"); for (; s; s = s->next) @@ -1288,7 +1284,6 @@ void server_destroy(struct conf_server *server) s = s_next; } pp2_charset_fact_destroy(server->charsets); - yaz_log(YLOG_LOG, "server_destroy server=%p", server); http_server_destroy(server->http_server); }