1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/security/openssh/files/patch-ak
Brian Feldman 828e1fc6be Add support for setting login.conf class things including rlimits, priority,
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>
1999-11-13 23:37:58 +00:00

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"