1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/security/openssh/files/patch-as
Brian Feldman ccf991de8f Update to today's OpenSSH.
The version is now 1.2.1, from 1.2.  You can mv your old distfiles/OpenSSH-1.2
dir to distfiles/OpenSSH-1.2.1, if you want to not waste time/space.

Some minor nits have been fixed, and a couple bugs.  One sizeof(len)
should have just been len, and, in markus's words,
"fix get_remote_port() and friends for sshd -i".
1999-12-23 06:37:30 +00:00

15 lines
295 B
Plaintext

--- pty.c.orig Thu Dec 23 01:13:10 1999
+++ pty.c Thu Dec 23 01:14:05 1999
@@ -16,7 +16,11 @@
#include "includes.h"
RCSID("$Id: pty.c,v 1.11 1999/12/11 09:35:46 markus Exp $");
+#ifdef __FreeBSD__
+#include <libutil.h>
+#else
#include <util.h>
+#endif
#include "pty.h"
#include "ssh.h"