[w3m-dev 03761] eliminate compiler warnings
* ftp.c (ftp_login): Str tmp * table.c (feed_table_tag): p is used ifdef ID_EXT From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2003-02-21 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
|
||||||
|
|
||||||
|
* [w3m-dev 03761] eliminate compiler warnings
|
||||||
|
* ftp.c (ftp_login): Str tmp
|
||||||
|
* table.c (feed_table_tag): p is used ifdef ID_EXT
|
||||||
|
|
||||||
2003-02-21 WATANABE Katsuyuki <knabe@sannet.ne.jp>
|
2003-02-21 WATANABE Katsuyuki <knabe@sannet.ne.jp>
|
||||||
|
|
||||||
* [w3m-dev 03760] Re: README.cygwin
|
* [w3m-dev 03760] Re: README.cygwin
|
||||||
@@ -7207,4 +7213,4 @@ a * [w3m-dev 03276] compile error on EWS4800
|
|||||||
* release-0-2-1
|
* release-0-2-1
|
||||||
* import w3m-0.2.1
|
* import w3m-0.2.1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.756 2003/02/20 15:38:21 ukai Exp $
|
$Id: ChangeLog,v 1.757 2003/02/20 15:39:18 ukai Exp $
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* $Id: ftp.c,v 1.26 2003/01/15 16:24:25 ukai Exp $ */
|
/* $Id: ftp.c,v 1.27 2003/02/20 15:39:21 ukai Exp $ */
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <pwd.h>
|
#include <pwd.h>
|
||||||
#include <Str.h>
|
#include <Str.h>
|
||||||
@@ -105,7 +105,6 @@ ftp_close(FTP ftp)
|
|||||||
static int
|
static int
|
||||||
ftp_login(FTP ftp)
|
ftp_login(FTP ftp)
|
||||||
{
|
{
|
||||||
Str tmp;
|
|
||||||
int sock, status;
|
int sock, status;
|
||||||
|
|
||||||
sock = openSocket(ftp->host, "ftp", 21);
|
sock = openSocket(ftp->host, "ftp", 21);
|
||||||
@@ -121,7 +120,7 @@ ftp_login(FTP ftp)
|
|||||||
|
|
||||||
if (!getsockname(sock, (struct sockaddr *)&sockname, &socknamelen)) {
|
if (!getsockname(sock, (struct sockaddr *)&sockname, &socknamelen)) {
|
||||||
struct hostent *sockent;
|
struct hostent *sockent;
|
||||||
tmp = Strnew_charp(ftp->pass);
|
Str tmp = Strnew_charp(ftp->pass);
|
||||||
|
|
||||||
if ((sockent = gethostbyaddr((char *)&sockname.sin_addr,
|
if ((sockent = gethostbyaddr((char *)&sockname.sin_addr,
|
||||||
sizeof(sockname.sin_addr),
|
sizeof(sockname.sin_addr),
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* $Id: table.c,v 1.39 2003/01/23 18:01:08 ukai Exp $ */
|
/* $Id: table.c,v 1.40 2003/02/20 15:39:22 ukai Exp $ */
|
||||||
/*
|
/*
|
||||||
* HTML table
|
* HTML table
|
||||||
*/
|
*/
|
||||||
@@ -2472,7 +2472,9 @@ feed_table_tag(struct table *tbl, char *line, struct table_mode *mode,
|
|||||||
int width, struct parsed_tag *tag)
|
int width, struct parsed_tag *tag)
|
||||||
{
|
{
|
||||||
int cmd;
|
int cmd;
|
||||||
|
#ifdef ID_EXT
|
||||||
char *p;
|
char *p;
|
||||||
|
#endif
|
||||||
struct table_cell *cell = &tbl->cell;
|
struct table_cell *cell = &tbl->cell;
|
||||||
int colspan, rowspan;
|
int colspan, rowspan;
|
||||||
int col, prev_col;
|
int col, prev_col;
|
||||||
|
|||||||
Reference in New Issue
Block a user