X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fodr_util.c;h=6beac3b92b9c3e95c7d883206c4a45ddf61b4d6a;hb=60a702f390f7e2addfdab79f2328db3ba2897c8b;hp=dc37ca36af3b8d8d9a3117e85417e2772f27fb05;hpb=0a7d4354288c747883261e9f430a7e0069225a5b;p=yaz-moved-to-github.git diff --git a/src/odr_util.c b/src/odr_util.c index dc37ca3..6beac3b 100644 --- a/src/odr_util.c +++ b/src/odr_util.c @@ -1,8 +1,12 @@ /* - * 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.4 2004-08-11 12:15:38 adam Exp $ + * $Id: odr_util.c,v 1.7 2005-01-15 19:47:14 adam Exp $ + */ +/** + * \file odr_util.c + * \brief Implements various ODR utilities */ #if HAVE_CONFIG_H #include @@ -65,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++;