From 9b4b753a6833eda435f995060f5d3f515381ce11 Mon Sep 17 00:00:00 2001 From: Marc Cromme Date: Mon, 23 Apr 2007 09:06:20 +0000 Subject: [PATCH] reverting to exit call, as it might be dangerous to have a dictionary which is not in order. Still, this place needs attention, as sending a wrong setting bt WS effectively kills the server. --- src/settings.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/settings.c b/src/settings.c index e6b7c3a..449f7a0 100644 --- a/src/settings.c +++ b/src/settings.c @@ -1,4 +1,4 @@ -/* $Id: settings.c,v 1.19 2007-04-23 08:15:22 marc Exp $ +/* $Id: settings.c,v 1.20 2007-04-23 09:06:20 marc Exp $ Copyright (c) 2006-2007, Index Data. This file is part of Pazpar2. @@ -263,8 +263,11 @@ static void prepare_dictionary(struct setting *set) if (!strcmp(dictionary->dict[i], set->name)) return; - if (!strncmp(set->name, "pz:", 3)) // Probably a typo in config fle - yaz_log(YLOG_FATAL, "Unknown pz: setting '%s'", set->name); + if (!strncmp(set->name, "pz:", 3)) // Probably a typo in config file + { + yaz_log(YLOG_FATAL, "Unknown pz: setting '%s'", set->name); + exit(1); + } // Create a new dictionary entry // Grow dictionary if necessary -- 1.7.10.4