X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fodr_util.c;h=2748da41a90b9f191da0e6678db858b265bb1461;hb=8aa7ee02ee4abdda2f19b42236600f2954ce6c05;hp=0d4db2e306422f536f6b079295408f8734ef8ea5;hpb=05c274ef315384faafcc5900c17468f0ea2474e6;p=yaz-moved-to-github.git diff --git a/src/odr_util.c b/src/odr_util.c index 0d4db2e..2748da4 100644 --- a/src/odr_util.c +++ b/src/odr_util.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2004, Index Data * 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.6 2004-12-30 00:14:38 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++;