From c2ba8ca81f8d753a9ac3fdd94a1fb3ea53b64f84 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Fri, 26 Nov 2010 13:59:01 +0100 Subject: s/isspace/ISSPACE --- lib/ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/ssh.c') diff --git a/lib/ssh.c b/lib/ssh.c index 862ce76f6..52cf5ad98 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -1935,7 +1935,7 @@ static CURLcode ssh_statemach_act(struct connectdata *conn, bool *block) char *ptr2; from=curlx_strtoofft(conn->data->state.range, &ptr, 0); - while(*ptr && (isspace((int)*ptr) || (*ptr=='-'))) + while(*ptr && (ISSPACE(*ptr) || (*ptr=='-'))) ptr++; to=curlx_strtoofft(ptr, &ptr2, 0); if((ptr == ptr2) /* no "to" value given */ -- cgit v1.2.3