mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
152bebfc5c
- 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.
15 lines
308 B
Plaintext
15 lines
308 B
Plaintext
--- sshpty.c.orig Sun Mar 4 02:46:30 2001
|
|
+++ sshpty.c Sat May 26 15:21:34 2001
|
|
@@ -14,7 +14,11 @@
|
|
#include "includes.h"
|
|
RCSID("$OpenBSD: sshpty.c,v 1.1 2001/03/04 01:46:30 djm Exp $");
|
|
|
|
+#ifdef __FreeBSD__
|
|
+#include <libutil.h>
|
|
+#else
|
|
#include <util.h>
|
|
+#endif
|
|
#include "sshpty.h"
|
|
#include "log.h"
|
|
|