freebsd-ports/security/openssh/files/patch-an
Kris Kennaway 2ec13ccae9 Add patch to deal with possible remote root exploit found by
Michal Zalewski of the Bindview RAZOR Team, and some patches to hopefully
deal with compilation on older versions of FreeBSD.

Submitted by:	alfred
2001-02-09 22:37:50 +00:00

16 lines
326 B
Plaintext

--- /home/bright/ssh/ssh/sshd.c Thu Aug 17 13:06:34 2000
+++ sshd.c Fri Feb 9 11:19:08 2001
@@ -49,6 +49,12 @@
int deny_severity = LOG_WARNING;
#endif /* LIBWRAP */
+#ifdef __FreeBSD__
+#include <libutil.h>
+#include <syslog.h>
+#include <time.h>
+#endif /* __FreeBSD__ */
+
#ifndef O_NOCTTY
#define O_NOCTTY 0
#endif