Add (unsigned char) cast to ctype function (for /sbin/setkey)

This commit is contained in:
dsl 2004-10-29 19:31:04 +00:00
parent 91d3fe12d9
commit 2722aff86f
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: key_debug.c,v 1.28 2003/09/12 07:38:11 itojun Exp $ */
/* $NetBSD: key_debug.c,v 1.29 2004/10/29 19:31:04 dsl Exp $ */
/* $KAME: key_debug.c,v 1.36 2003/06/27 06:46:01 itojun Exp $ */
/*
@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: key_debug.c,v 1.28 2003/09/12 07:38:11 itojun Exp $");
__KERNEL_RCSID(0, "$NetBSD: key_debug.c,v 1.29 2004/10/29 19:31:04 dsl Exp $");
#ifdef _KERNEL
#include "opt_inet.h"
@ -347,7 +347,7 @@ kdebug_sadb_identity(ext)
p = (char *)(id + 1);
ep = p + len;
for (/*nothing*/; *p && p < ep; p++) {
if (isprint(*p))
if (isprint((unsigned char)*p))
printf("%c", *p & 0xff);
else
printf("\\%03o", *p & 0xff);