* Copyright (c) 1995-2004, Index Data
* See the file LICENSE for details.
*
- * $Id: client.c,v 1.246 2004-08-11 11:44:30 adam Exp $
+ * $Id: client.c,v 1.247 2004-08-13 11:36:48 adam Exp $
*/
#include <stdio.h>
name = oid_str;
val = 0;
- while (isdigit (*name))
+ while (isdigit (*(unsigned char *) name))
{
val = val*10 + (*name - '0');
name++;
/* removed tailing spaces from the arg command */
{
- unsigned char* p = arg;
+ char* p = arg;
char* lastnonspace=NULL;
for(;*p; ++p) {
- if(!isspace(*p)) {
+ if(!isspace(*(unsigned char *) p)) {
lastnonspace = p;
}
}