mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Applied Tim Mooney's patch that fixes a build problem under Tru64.
Published in <Pine.OSF.4.33.0102072244450.2714-100000@dogbert.cc.ndsu.NoDak.edu>.
This commit is contained in:
parent
07f60f19a4
commit
fdc20de365
@ -1,3 +1,9 @@
|
||||
2001-02-10 Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>
|
||||
|
||||
* ftp.h: Rename enums `command' to `wget_ftp_command' and
|
||||
`fstatus' to `wget_ftp_status' because old names clash with Tru64
|
||||
net/if.h.
|
||||
|
||||
2001-02-08 Christian Fraenkel <christian.fraenkel@gmx.net>
|
||||
|
||||
* gen_sslfunc.c: verify_callback is now static
|
||||
|
@ -74,7 +74,7 @@ struct fileinfo
|
||||
};
|
||||
|
||||
/* Commands for FTP functions. */
|
||||
enum command
|
||||
enum wget_ftp_command
|
||||
{
|
||||
DO_LOGIN = 0x0001, /* Connect and login to the server. */
|
||||
DO_CWD = 0x0002, /* Change current directory. */
|
||||
@ -83,7 +83,7 @@ enum command
|
||||
LEAVE_PENDING = 0x0010 /* Do not close the socket. */
|
||||
};
|
||||
|
||||
enum fstatus
|
||||
enum wget_ftp_fstatus
|
||||
{
|
||||
NOTHING = 0x0000, /* Nothing done yet. */
|
||||
ON_YOUR_OWN = 0x0001, /* The ftp_loop_internal sets the
|
||||
|
Loading…
Reference in New Issue
Block a user