Added MarcXchange support.
[yaz-moved-to-github.git] / src / cqlstrer.c
index f8b29ce..b8d3881 100644 (file)
@@ -1,12 +1,17 @@
-/* $Id: cqlstrer.c,v 1.1 2003-10-27 12:21:30 adam Exp $
-   Copyright (C) 2002-2003
+/* $Id: cqlstrer.c,v 1.4 2005-01-15 19:47:11 adam Exp $
+   Copyright (C) 1995-2005, Index Data ApS
    Index Data Aps
 
 This file is part of the YAZ toolkit.
 
-See the file LICENSE.
+See the file LICENSE details.
 */
 
+/**
+ * \file cqlstrer.c
+ * \brief Implements CQL error code map to description string.
+ */
+
 #include <yaz/cql.h>
 
 /*
@@ -22,9 +27,9 @@ const char *cql_strerror(int code) {
     case 12: return "Too many characters in query";
     case 13: return "Unbalanced or illegal use of parentheses";
     case 14: return "Unbalanced or illegal use of quotes";
-    case 15: return "Illegal or unsupported index set";
+    case 15: return "Illegal or unsupported context set";
     case 16: return "Illegal or unsupported index";
-    case 17: return "Illegal or unsupported combination of index and index set";
+    case 17: return "Illegal or unsupported combination of index and context set";
     case 18: return "Illegal or unsupported combination of indexes";
     case 19: return "Illegal or unsupported relation";
     case 20: return "Illegal or unsupported relation modifier";
@@ -52,7 +57,7 @@ const char *cql_strerror(int code) {
     case 42: return "Illegal or unsupported proximity unit";
     case 43: return "Illegal or unsupported proximity ordering";
     case 44: return "Illegal or unsupported combination of proximity modifiers";
-    case 45: return "Index set name (prefix) assigned to multiple identifiers";
+    case 45: return "Context set name (prefix) assigned to multiple identifiers";
     default: break;
     }