mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
* ftpfs.c: Add fallback to type int if socklen_t is not provided.
This commit is contained in:
parent
42f676fd5f
commit
3c750ff024
@ -1,3 +1,7 @@
|
||||
2004-11-02 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* ftpfs.c: Add fallback to type int if socklen_t is not provided.
|
||||
|
||||
2004-11-01 Andriy Gritsenko <andrej * rep kiev ua>
|
||||
|
||||
* tar.c (tar_read_header): Fix pathname canonicalization.
|
||||
|
@ -93,6 +93,9 @@ What to do with this?
|
||||
#define RFC_DARING 1
|
||||
#define RFC_STRICT 2
|
||||
|
||||
#ifndef HAVE_C_TYPE_SOCKLEN_T
|
||||
typedef int socklen_t;
|
||||
#endif
|
||||
|
||||
static int ftpfs_errno;
|
||||
static int code;
|
||||
|
Loading…
Reference in New Issue
Block a user