fix indent

This commit is contained in:
Fumitoshi UKAI
2003-03-06 14:26:14 +00:00
parent 5ef48c8f2e
commit 2766b37ab6

8
ftp.c
View File

@@ -1,4 +1,4 @@
/* $Id: ftp.c,v 1.28 2003/02/26 17:38:00 ukai Exp $ */
/* $Id: ftp.c,v 1.29 2003/03/06 14:26:14 ukai Exp $ */
#include <stdio.h>
#include <pwd.h>
#include <Str.h>
@@ -283,7 +283,8 @@ ftp_quit(FTP ftp)
return 0;
}
static int ex_ftpdir_name_size_date(char *, char **, char **, char **, char **);
static int ex_ftpdir_name_size_date(char *, char **, char **, char **,
char **);
#define SERVER_NONE 0
#define UNIXLIKE_SERVER 1
@@ -504,7 +505,8 @@ loadFTPDir(ParsedURL *pu, char *code)
max_len = 20;
while (tmp = Strfgets(current_ftp.data), tmp->length > 0) {
Strchop(tmp);
if ((ftype = ex_ftpdir_name_size_date(tmp->ptr, &name, &link, &date,
if ((ftype =
ex_ftpdir_name_size_date(tmp->ptr, &name, &link, &date,
&size)) == FTPDIR_NONE)
continue;
if (!strcmp(".", name) || !strcmp("..", name))