Fix URL of SRU diagnostics list.
[yaz-moved-to-github.git] / src / cqlstrer.c
index 46b8a4e..c783134 100644 (file)
@@ -1,18 +1,23 @@
-/* $Id: cqlstrer.c,v 1.2 2003-12-18 17:05:01 mike Exp $
-   Copyright (C) 2002-2003
+/* $Id: cqlstrer.c,v 1.6 2006-03-10 10:43:32 mike 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>
 
 /*
  * The error-messages associated with these codes are taken from
  * the SRW diagnostic specifications at
- *     http://www.loc.gov/srw/diagnostic-list.html
+ *      http://www.loc.gov/standards/sru/diagnostics-list.html
  */
 const char *cql_strerror(int code) {
     static char buf[80];
@@ -59,3 +64,11 @@ const char *cql_strerror(int code) {
     sprintf(buf, "Unknown CQL error #%d", code);
     return buf;
 }
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+