1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00
freebsd-ports/comms/mgetty+sendfax/files/patch-utmp.c
Jimmy Olgeni ed24810611 Unbreak on 9.x with utmpx.
mgetty already has utmpx support for SVR4; we can borrow it with a
few changes to make utmpx work.

Feature safe:	yes
2011-11-20 14:36:57 +00:00

21 lines
711 B
C

$FreeBSD$
--- utmp.c.orig
+++ utmp.c
@@ -1,4 +1,4 @@
-#ident "$Id: utmp.c,v 4.4 2001/12/17 22:43:24 gert Exp $ Copyright (c) Gert Doering"
+static char sccsid[] = "$Id: utmp.c,v 4.4 2001/12/17 22:43:24 gert Exp $ Copyright (c) Gert Doering";
/* some parts of the code (writing of the utmp entry)
* is based on the "getty kit 2.0" by Paul Sutcliffe, Jr.,
@@ -58,7 +58,7 @@
* [NB: If we wanted to set UT_INIT, it would have to be an entry with
* empty ut_name and ut_host]
*/
-#if defined(__FreeBSD__) || defined(__NetBSD__)
+#if (defined(__FreeBSD__) && (__FreeBSD_version < 900007)) || defined(__NetBSD__)
struct utmp utmp;
extern void login _PROTO(( struct utmp * utmp ));