/*
 * BSD style wtmp updating routine Version 1.0 (c) S.R.Usher 1991.
 * Modified 910126 dpg: uses non-buffered file ops, like utmp.c
 */

#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <utmp.h>

#define WTMP_FILE	"/var/adm/wtmp"

void write_wtmp(line, name, host, time)
char *line;
char *name;
char *host;
unsigned long time;
{
	int fd;
	struct utmp entry;

	if ((fd = open(WTMP_FILE, O_RDONLY)) < 0)
	{
#ifdef DEBUG
		perror("write_wtmp");
#endif
		return;
	}

/*
 * Note, doing this in this order means that it doesn't matter about the Null
 * bytes strncpy adds the the strings if they are greater than 8/16 bytes!
 */

	strncpy(entry.ut_line, line, 8);
	strncpy(entry.ut_name, name, 8);
	strncpy(entry.ut_host, host, 16);
	entry.ut_time = time;

	write(fd, &entry, (size_t) sizeof(struct utmp));

	close(fd);
}
