1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-28 11:57:28 +00:00

Makefile:

Add -Wall to CFLAGS

ftpio.h:
		It's ftpGetModTime, not ftpModTime
This commit is contained in:
Gary Palmer 1996-06-26 20:31:11 +00:00
parent 2aba17b378
commit 8612149895
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16781
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
LIB= ftpio
CFLAGS+= -I${.CURDIR}
CFLAGS+= -I${.CURDIR} -Wall
SRCS= ftpio.c
MAN3= ftpio.3

View File

@ -20,7 +20,7 @@
* Turned inside out. Now returns xfers as new file ids, not as a special
* `state' of FTP_t
*
* $Id: ftpio.h,v 1.2 1996/06/17 15:28:08 jkh Exp $
* $Id: ftpio.h,v 1.3 1996/06/22 21:43:56 jkh Exp $
*/
/* Internal housekeeping data structure for FTP sessions */
@ -47,6 +47,6 @@ extern int ftpBinary(FILE *fp);
extern int ftpPassive(FILE *fp, int status);
extern FILE *ftpGetURL(char *url, char *user, char *passwd);
extern FILE *ftpPutURL(char *url, char *user, char *passwd);
extern time_t ftpModtime(FILE *fp, char *s);
extern time_t ftpGetModtime(FILE *fp, char *s);
#endif /* _FTP_H_INCLUDE */