Skip to content

Commit

Permalink
Fix isspace() warning on *BSD. Again
Browse files Browse the repository at this point in the history
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
David Woodhouse authored and David Woodhouse committed Jan 26, 2015
1 parent 1e27d73 commit b2e0c5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oncp.c
Expand Up @@ -558,7 +558,7 @@ static int parse_cookie(struct openconnect_info *vpninfo)
if (p) {
*p = ';';
p++;
while (*p && isspace(*p))
while (*p && isspace((int)(unsigned char)*p))
p++;
}
}
Expand Down

0 comments on commit b2e0c5c

Please sign in to comment.