diff options
author | Love Hörnquist Åstrand <lha@samba.org> | 2005-07-12 22:22:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:20:14 -0500 |
commit | 61edb97bdfabf1ab313fbec5f47f5e6c8a79da1a (patch) | |
tree | 7b554690182fd2be55ba76a793227c3d3e46064c /source4/utils | |
parent | df426e5d4a33491c6b4bd8878ae3fbf29e728b5f (diff) | |
download | samba-61edb97bdfabf1ab313fbec5f47f5e6c8a79da1a.tar.gz samba-61edb97bdfabf1ab313fbec5f47f5e6c8a79da1a.tar.bz2 samba-61edb97bdfabf1ab313fbec5f47f5e6c8a79da1a.zip |
r8394: Make sure the argument to ctype is*(3) macros are unsigned char as
required by ISO C99.
(This used to be commit 56fd21c806e816cf4c3d23881f26474f858b45e2)
Diffstat (limited to 'source4/utils')
-rw-r--r-- | source4/utils/nmblookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/utils/nmblookup.c b/source4/utils/nmblookup.c index 900d55d6df..c8490d08e6 100644 --- a/source4/utils/nmblookup.c +++ b/source4/utils/nmblookup.c @@ -49,7 +49,7 @@ static const char *clean_name(TALLOC_CTX *mem_ctx, const char *name) char *ret = talloc_strdup(mem_ctx, name); int i; for (i=0;ret[i];i++) { - if (!isprint(ret[i])) ret[i] = '.'; + if (!isprint((unsigned char)ret[i])) ret[i] = '.'; } return ret; } |