Source-Changes-HG archive

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

[src/trunk]: src/lib/libutil const poisoning.



details:   https://anonhg.NetBSD.org/src/rev/998dfff632f7
branches:  trunk
changeset: 473653:998dfff632f7
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Jun 12 18:06:40 1999 +0000

description:
const poisoning.

diffstat:

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

diffs (27 lines):

diff -r 13dc19d1e600 -r 998dfff632f7 lib/libutil/login.c
--- a/lib/libutil/login.c       Sat Jun 12 18:06:19 1999 +0000
+++ b/lib/libutil/login.c       Sat Jun 12 18:06:40 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: login.c,v 1.9 1998/01/22 15:29:13 perry Exp $  */
+/*     $NetBSD: login.c,v 1.10 1999/06/12 18:06:40 christos Exp $      */
 
 /*
  * Copyright (c) 1988, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)login.c    8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: login.c,v 1.9 1998/01/22 15:29:13 perry Exp $");
+__RCSID("$NetBSD: login.c,v 1.10 1999/06/12 18:06:40 christos Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -53,7 +53,7 @@
 
 void
 login(ut)
-       struct utmp *ut;
+       const struct utmp *ut;
 {
        int fd;
        int tty;



Home | Main Index | Thread Index | Old Index