diff options
author | 1997-09-22 05:14:11 +0000 | |
---|---|---|
committer | 1997-09-22 05:14:11 +0000 | |
commit | 619b3d998be444c68f3bfa644455a79e058dbd98 (patch) | |
tree | 686b9d3be489e52baccafaa310114b16e204abad | |
parent | document SCSITERSE and SCSIDEBUG (diff) | |
download | wireguard-openbsd-619b3d998be444c68f3bfa644455a79e058dbd98.tar.xz wireguard-openbsd-619b3d998be444c68f3bfa644455a79e058dbd98.zip |
socks5 support
-rw-r--r-- | usr.bin/ftp/ftp_var.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/ftp/ftp_var.h b/usr.bin/ftp/ftp_var.h index bffe7894738..7239f6aafdf 100644 --- a/usr.bin/ftp/ftp_var.h +++ b/usr.bin/ftp/ftp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ftp_var.h,v 1.14 1997/09/04 04:37:16 millert Exp $ */ +/* $OpenBSD: ftp_var.h,v 1.15 1997/09/22 05:14:11 millert Exp $ */ /* $NetBSD: ftp_var.h,v 1.18 1997/08/18 10:20:25 lukem Exp $ */ /* @@ -47,6 +47,10 @@ #include <histedit.h> #endif /* !SMALL */ +#ifdef SOCKS +#include <socks.h> +#endif + #include "stringlist.h" #include "extern.h" |