diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-18 19:22:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-18 19:22:10 +0000 |
commit | 8af8f0493c765b27815024897d53ce0de9d451a7 (patch) | |
tree | 31291ac0bc2360a4db761192804c2080689224d0 /lib/libutil | |
parent | 372c6d9d3eb9cf732c8ee83cf6c1538f51b2c042 (diff) |
cast not needed
Diffstat (limited to 'lib/libutil')
-rw-r--r-- | lib/libutil/logwtmp.c | 6 |
1 files 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 <sys/types.h> @@ -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); } |