From 8af8f0493c765b27815024897d53ce0de9d451a7 Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Sat, 18 Sep 2004 19:22:10 +0000 Subject: cast not needed --- lib/libutil/logwtmp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/libutil/logwtmp.c b/lib/libutil/logwtmp.c index 7e8a1db09ba..2ab7b8a53b3 100644 --- a/lib/libutil/logwtmp.c +++ b/lib/libutil/logwtmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: logwtmp.c,v 1.7 2004/05/28 07:03:47 deraadt Exp $ */ +/* $OpenBSD: logwtmp.c,v 1.8 2004/09/18 19:22:09 deraadt Exp $ */ /* * Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /* from: static char sccsid[] = "@(#)logwtmp.c 8.1 (Berkeley) 6/4/93"; */ -static const char rcsid[] = "$Id: logwtmp.c,v 1.7 2004/05/28 07:03:47 deraadt Exp $"; +static const char rcsid[] = "$Id: logwtmp.c,v 1.8 2004/09/18 19:22:09 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include @@ -58,7 +58,7 @@ logwtmp(const char *line, const char *name, const char *host) (void) strncpy(ut.ut_name, name, sizeof(ut.ut_name)); (void) strncpy(ut.ut_host, host, sizeof(ut.ut_host)); (void) time(&ut.ut_time); - if (write(fd, (char *)&ut, sizeof(struct utmp)) != + if (write(fd, &ut, sizeof(struct utmp)) != sizeof(struct utmp)) (void) ftruncate(fd, buf.st_size); } -- cgit v1.2.3