mirror of https://github.com/MidnightCommander/mc
Fix fish warnings -mig
This commit is contained in:
parent
eb802701a5
commit
3059f6c31a
|
@ -1,3 +1,8 @@
|
|||
1998-09-25 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||
|
||||
* shared_ftp_fish.c: Addaed prototypes for linear_start, linear_read,
|
||||
linear_close
|
||||
|
||||
Wed Sep 23 15:09:55 1998 Tom Tromey <tromey@cygnus.com>
|
||||
|
||||
* vfs.h (MIN, MAX): Only define if not already defined; glib.h
|
||||
|
|
|
@ -1,9 +1,17 @@
|
|||
|
||||
static struct dir *retrieve_dir(struct connection *bucket, char *remote_path, int resolve_symlinks);
|
||||
static int store_file(struct direntry *fe);
|
||||
static int retrieve_file_start(struct direntry *fe);
|
||||
static int retrieve_file(struct direntry *fe);
|
||||
static int remove_temp_file (char *file_name);
|
||||
/*
|
||||
* Shared code between the fish.c and the ftp.c file systems
|
||||
*
|
||||
*/
|
||||
static int store_file (struct direntry *fe);
|
||||
static int retrieve_file_start (struct direntry *fe);
|
||||
static int retrieve_file (struct direntry *fe);
|
||||
static int remove_temp_file (char *file_name);
|
||||
static int linear_start (struct direntry *fe);
|
||||
static int linear_read (struct direntry *fe, void *buf, int len);
|
||||
static int linear_close (struct direntry *fe);
|
||||
static struct dir *retrieve_dir (struct connection *bucket,
|
||||
char *remote_path,
|
||||
int resolve_symlinks);
|
||||
|
||||
static int
|
||||
select_on_two (int fd1, int fd2)
|
||||
|
|
Loading…
Reference in New Issue