aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_install/lib
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/pkg_install/lib')
-rw-r--r--usr.sbin/pkg_install/lib/ftp.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/usr.sbin/pkg_install/lib/ftp.h b/usr.sbin/pkg_install/lib/ftp.h
index f1e35d694ba3..9275dd4f35c6 100644
--- a/usr.sbin/pkg_install/lib/ftp.h
+++ b/usr.sbin/pkg_install/lib/ftp.h
@@ -17,9 +17,6 @@ FTP_t FtpInit();
int FtpOpen(FTP_t, char *host, char *user, char *passwd);
#define FtpBinary(ftp,bool) { (ftp)->binary = (bool); }
#define FtpPassive(ftp,bool) { (ftp)->passive = (bool); }
-#ifndef STANDALONE_FTP
-#define FtpDebug(ftp, bool) { (ftp)->fd_debug = (bool); }
-#endif
int FtpChdir(FTP_t, char *);
int FtpGet(FTP_t, char *);
int FtpEOF(FTP_t);