diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2012-02-10 01:52:10 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2012-02-10 01:52:10 -0500 |
commit | 5307f5f9b8ef280d693fc38c1261fd7b3ffd94b1 (patch) | |
tree | 24fd5204c945357776458159e3806bea4e850ac6 /WWW/Library/Implementation/HTFTP.c | |
parent | 53628f60fd3902b835e8b6500bf5b4e2a584db97 (diff) | |
download | lynx-snapshots-5307f5f9b8ef280d693fc38c1261fd7b3ffd94b1.tar.gz |
snapshot of project "lynx", label v2-8-8dev_9m
Diffstat (limited to 'WWW/Library/Implementation/HTFTP.c')
-rw-r--r-- | WWW/Library/Implementation/HTFTP.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WWW/Library/Implementation/HTFTP.c b/WWW/Library/Implementation/HTFTP.c index 5ca71225..480eacfd 100644 --- a/WWW/Library/Implementation/HTFTP.c +++ b/WWW/Library/Implementation/HTFTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTFTP.c,v 1.100 2011/05/24 09:49:44 tom Exp $ + * $LynxId: HTFTP.c,v 1.101 2012/02/09 12:34:48 tom Exp $ * * File Transfer Protocol (FTP) Client * for a WorldWideWeb browser @@ -1304,7 +1304,7 @@ static int get_listen_socket(void) return HTInetStatus("getsockname"); #ifdef INET6 CTRACE((tfp, "HTFTP: This host is %s\n", - HTInetString((SockA *) soc_in))); + HTInetString((void *) soc_in))); soc_in->sin_port = 0; /* Unspecified: please allocate */ #else @@ -1352,7 +1352,7 @@ static int get_listen_socket(void) #ifdef INET6 CTRACE((tfp, "HTFTP: bound to port %d on %s\n", (int) ntohs(soc_in->sin_port), - HTInetString((SockA *) soc_in))); + HTInetString((void *) soc_in))); #else CTRACE((tfp, "HTFTP: bound to port %d on %s\n", (int) ntohs(soc_in->sin_port), |