X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=util%2Fyaz-icu.c;h=3ed2446bd018c3e510956b5eaa6f7a57873ca4de;hp=4f0368e3d579e401447a14a984a53e9d46ac5bf3;hb=06fcbb2ac6af85e8a659ff9b000e16455a5cb847;hpb=e310bbc88afee1090799a0183d75c35d5eb060d9 diff --git a/util/yaz-icu.c b/util/yaz-icu.c index 4f0368e..3ed2446 100644 --- a/util/yaz-icu.c +++ b/util/yaz-icu.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: yaz-icu.c,v 1.16 2008-01-14 22:58:06 adam Exp $ */ #if HAVE_CONFIG_H @@ -395,7 +393,7 @@ static void print_icu_xml_locales(const struct config_t *p_config) if(U_FAILURE(status)) { fprintf(stderr, "ICU Error: %d %s\n", status, u_errorName(status)); - exit(status); + exit(2); } } @@ -440,11 +438,11 @@ static void process_text_file(const struct config_t *p_config) UErrorCode status = U_ZERO_ERROR; int success = 0; - if (! xml_node) + if (!xml_node) { printf("Could not parse XML config file '%s' \n", config.conffile); - exit (1); + exit(1); } config.chain = icu_chain_xml_config(xml_node, 1, &status); @@ -454,7 +452,7 @@ static void process_text_file(const struct config_t *p_config) else { printf("Could not set up ICU chain from config file '%s' \n", config.conffile); - exit (1); + exit(1); } if (p_config->xmloutput) @@ -538,9 +536,10 @@ int main(int argc, char **argv) "re-configure and re-compile\n"); + exit(3); #endif /* YAZ_HAVE_ICU */ - return(0); + return 0; }