Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libtelnet (printd): const-poision



details:   https://anonhg.NetBSD.org/src/rev/324a4e3686ce
branches:  trunk
changeset: 481499:324a4e3686ce
user:      assar <assar%NetBSD.org@localhost>
date:      Tue Feb 01 02:23:20 2000 +0000

description:
(printd): const-poision

diffstat:

 lib/libtelnet/misc.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r fb1870a2d90f -r 324a4e3686ce lib/libtelnet/misc.c
--- a/lib/libtelnet/misc.c      Tue Feb 01 01:24:38 2000 +0000
+++ b/lib/libtelnet/misc.c      Tue Feb 01 02:23:20 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: misc.c,v 1.8 1998/07/28 07:18:12 msaitoh Exp $ */
+/*     $NetBSD: misc.c,v 1.9 2000/02/01 02:23:20 assar Exp $   */
 
 /*-
  * Copyright (c) 1991, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)misc.c     8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: misc.c,v 1.8 1998/07/28 07:18:12 msaitoh Exp $");
+__RCSID("$NetBSD: misc.c,v 1.9 2000/02/01 02:23:20 assar Exp $");
 #endif
 #endif /* not lint */
 
@@ -87,7 +87,7 @@
 
        void
 printd(data, cnt)
-       unsigned char *data;
+       const unsigned char *data;
        int cnt;
 {
        if (cnt > 16)



Home | Main Index | Thread Index | Old Index