mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
828e1fc6be
and umask. Also support /var/run/nologin, copyright, and support motd correctly. The PR was used as a base, thanks! PR: 14859 Submitted by: Dan Harnett <danh@wzrd.com>
15 lines
312 B
Plaintext
15 lines
312 B
Plaintext
--- ./login.c.orig Sat Nov 13 16:50:45 1999
|
|
+++ ./login.c Sat Nov 13 17:59:23 1999
|
|
@@ -20,7 +20,11 @@
|
|
#include "includes.h"
|
|
RCSID("$Id: login.c,v 1.7 1999/09/30 16:55:06 deraadt Exp $");
|
|
|
|
+#if defined(__FreeBSD__)
|
|
+#include <libutil.h>
|
|
+#else
|
|
#include <util.h>
|
|
+#endif
|
|
#include <utmp.h>
|
|
#include "ssh.h"
|
|
|