diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-22 05:14:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-22 05:14:12 +0000 |
commit | ced509ea3871e0f38dff0c1af3e72fe8a981acda (patch) | |
tree | 7e0e9f605471029f62ecacce24ce70f1891754ce /usr.bin/ftp | |
parent | 93ed705911177774631d1e265affd73729a624cd (diff) |
socks5 support
Diffstat (limited to 'usr.bin/ftp')
-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" |