From a5b996a7ecea192e05c848269fbfb40c1e7c50ef Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Sat, 30 Dec 1995 19:02:48 +0000 Subject: recording cvs-1.6 file death --- lib/libftp/FtpInit.c | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 lib/libftp/FtpInit.c (limited to 'lib/libftp/FtpInit.c') diff --git a/lib/libftp/FtpInit.c b/lib/libftp/FtpInit.c deleted file mode 100644 index 4e43c8c0b39f..000000000000 --- a/lib/libftp/FtpInit.c +++ /dev/null @@ -1,41 +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" - -FTP FtpInit = { - NULL, /*sock*/ - NULL, /*data*/ - 'A', /*mode*/ - 0, /*errno*/ - 0, /*ch*/ - NULL,NULL,NULL, NULL, /*funcs*/ - 0, /*seek*/ - 0, /*flags*/ - {120,0}, /*timeout 2 min*/ - 21, /*Port*/ - "johndoe", /* Title */ - 0, /*Counter*/ -}; - -FTP *FtpCreateObject() -{ - FTP *new = (FTP *) malloc (sizeof(FTP)); - - bcopy(&FtpInit,new,sizeof(FTP)); - - return new; -} - - -- cgit v1.3