freebsd-ports/security/openssh/files/patch-ae
Dirk Meyer 152bebfc5c - Update from OpenSSH 2.2.0 to OpenSSH 2.9
- Features:
  Possible use of sftp/sftp-server with older FreeBSD releases.
  Use a newer version independently from the Base system.
  Easier to test and fix possible security bugs.
- Bugs:
  build of pam_ssm.so isn't be supported any more
  Any file named "cookie" can be deleted by this and any older "sshd"
  with X11 Forwarding.
2001-06-08 08:03:26 +00:00

14 lines
355 B
Text

--- sshlogin.c.orig Sat Mar 24 17:43:27 2001
+++ sshlogin.c Sat May 26 14:42:30 2001
@@ -41,7 +41,11 @@
#include "includes.h"
RCSID("$OpenBSD: sshlogin.c,v 1.2 2001/03/24 16:43:27 stevesk Exp $");
+#ifdef __FreeBSD__
+#include <libutil.h>
+#else
#include <util.h>
+#endif /* __FreeBSD__ */
#include <utmp.h>
#include "sshlogin.h"
#include "log.h"