From 4a5550c8225d762f684d4047e20cc45274b6a785 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Wed, 7 Jun 2000 05:43:37 +0000 Subject: * Lots of bug fixes and cleanup; new i18n files, etc. --- w32/pathstuff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'w32/pathstuff.c') diff --git a/w32/pathstuff.c b/w32/pathstuff.c index 52f24a2..d8f3845 100644 --- a/w32/pathstuff.c +++ b/w32/pathstuff.c @@ -16,7 +16,7 @@ convert_vpath_to_windows32(char *Path, char to_delim) * contain blanks get trounced here. Use 8.3 format as a workaround. */ for (etok = Path; etok && *etok; etok++) - if (isblank(*etok)) + if (isblank ((unsigned char) *etok)) *etok = to_delim; return (convert_Path_to_windows32(Path, to_delim)); @@ -42,7 +42,7 @@ convert_Path_to_windows32(char *Path, char to_delim) etok[0] = to_delim; p = ++etok; continue; /* ignore empty bucket */ - } else if (!isalpha(*p)) { + } else if (!isalpha ((unsigned char) *p)) { /* found one to count, handle things like '.' */ *etok = to_delim; p = ++etok; -- cgit v1.2.3