diff options
author | Damien Miller <djm@mindrot.org> | 2013-11-21 13:57:15 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-11-21 13:57:15 +1100 |
commit | fdb2306acdc3eb2bc46b6dfdaaf6005c650af22a (patch) | |
tree | e74555afa79597355921b5e6ce9ba4ae901b5253 /readconf.c | |
parent | e00167307e4d3692695441e9bd712f25950cb894 (diff) |
- deraadt@cvs.openbsd.org 2013/11/20 20:54:10
[canohost.c clientloop.c match.c readconf.c sftp.c]
unsigned casts for ctype macros where neccessary
ok guenther millert markus
Diffstat (limited to 'readconf.c')
-rw-r--r-- | readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c index 63c0ba196..0e1030d00 100644 --- a/readconf.c +++ b/readconf.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: readconf.c,v 1.213 2013/10/24 00:51:48 dtucker Exp $ */ | 1 | /* $OpenBSD: readconf.c,v 1.214 2013/11/20 20:54:10 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -1753,7 +1753,7 @@ parse_forward(Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd) | |||
1753 | cp = p = xstrdup(fwdspec); | 1753 | cp = p = xstrdup(fwdspec); |
1754 | 1754 | ||
1755 | /* skip leading spaces */ | 1755 | /* skip leading spaces */ |
1756 | while (isspace(*cp)) | 1756 | while (isspace((u_char)*cp)) |
1757 | cp++; | 1757 | cp++; |
1758 | 1758 | ||
1759 | for (i = 0; i < 4; ++i) | 1759 | for (i = 0; i < 4; ++i) |