aboutsummaryrefslogtreecommitdiff
path: root/lib/libftp/FtpType.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libftp/FtpType.c')
-rw-r--r--lib/libftp/FtpType.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/libftp/FtpType.c b/lib/libftp/FtpType.c
deleted file mode 100644
index ae0d0ea00b11..000000000000
--- a/lib/libftp/FtpType.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- Library for ftpd clients.(libftp)
- Copyright by Oleg Orel
- All rights reserved.
-
-This library is desined for free, non-commercial software creation.
-It is changeable and can be improved. The author would greatly appreciate
-any advises, new components and patches of the existing programs.
-Commercial usage is also possible with participation of it's author.
-
-
-
-*/
-
-#include "FtpLibrary.h"
-
-STATUS FtpType(FTP *ftp, char type)
-{
- STATUS p;
-
- if ((p=FtpCommand(ftp,"TYPE %c",type,200,EOF))>0)
- ftp->mode=(int)type;
- return p;
-}
-
-