summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>2006-05-11 12:27:21 +0000
committermrg <mrg@NetBSD.org>2006-05-11 12:27:21 +0000
commit6daaa2e383ede7eab11f4f90169c2e2e204b6b4d (patch)
tree97e0323276d19c023f71dc0557de73fc17e6c15e /libexec
parentbb50bce73144f65abfab0c338000ee518a72e533 (diff)
use a u_char[] when it is expected.
Diffstat (limited to 'libexec')
-rw-r--r--libexec/telnetd/utility.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/telnetd/utility.c b/libexec/telnetd/utility.c
index dfee98382b7..e69b4bd6506 100644
--- a/libexec/telnetd/utility.c
+++ b/libexec/telnetd/utility.c
@@ -1,4 +1,4 @@
-/* $NetBSD: utility.c,v 1.28 2005/03/17 01:34:41 christos Exp $ */
+/* $NetBSD: utility.c,v 1.29 2006/05/11 12:27:21 mrg Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)utility.c 8.4 (Berkeley) 5/30/95";
#else
-__RCSID("$NetBSD: utility.c,v 1.28 2005/03/17 01:34:41 christos Exp $");
+__RCSID("$NetBSD: utility.c,v 1.29 2006/05/11 12:27:21 mrg Exp $");
#endif
#endif /* not lint */
@@ -517,7 +517,7 @@ printsub(
{
int i = 0;
#if defined(AUTHENTICATION) || defined(ENCRYPTION)
- char buf[512];
+ u_char buf[512];
#endif
if (!(diagnostic & TD_OPTIONS))