Added MarcXchange support.
[yaz-moved-to-github.git] / src / odr_util.c
index 0d4db2e..6beac3b 100644 (file)
@@ -1,8 +1,8 @@
 /*
- * Copyright (c) 1995-2004, Index Data
+ * Copyright (C) 1995-2005, Index Data ApS
  * See the file LICENSE for details.
  *
- * $Id: odr_util.c,v 1.5 2004-10-15 00:19:00 adam Exp $
+ * $Id: odr_util.c,v 1.7 2005-01-15 19:47:14 adam Exp $
  */
 /**
  * \file odr_util.c
@@ -69,7 +69,7 @@ Odr_oid *odr_getoidbystr_nmem(NMEM nmem, const char *str)
     const char *p = str;
     Odr_oid *ret;
 
-    if (!isdigit(*str))
+    if (!isdigit(*(const unsigned char *) str))
        return 0;
     while ((p = strchr(p, '.')))
        num++, p++;