Use unsigned char as argument to isspace(), from Michael ven Elst.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22647 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-02-25 07:35:44 +00:00
parent 45b392682d
commit 0f10735602

View File

@@ -708,7 +708,7 @@ read_conf_file(const char *fn, CK_USER_TYPE userType, const char *pin)
p++;
if (*p == '#')
continue;
while (isspace(*p))
while (isspace((unsigned char)*p))
p++;
s = NULL;