summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2004-09-18 19:22:09 +0000
committerderaadt <deraadt@openbsd.org>2004-09-18 19:22:09 +0000
commit2242f7753a98b22f0f5381999644ab60611e4f6f (patch)
treee6eccb4ea59253e1db8c3433ccd170c424414c04
parentMLINK to macros provided in wait.2 (diff)
downloadwireguard-openbsd-2242f7753a98b22f0f5381999644ab60611e4f6f.tar.xz
wireguard-openbsd-2242f7753a98b22f0f5381999644ab60611e4f6f.zip
cast not needed
-rw-r--r--lib/libutil/logwtmp.c6
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);
}