diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2007-08-18 08:12:17 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2007-08-18 08:12:17 +0000 |
commit | 70b6e762143fce71a3c399a78dc78314f6042c83 (patch) | |
tree | 7d245a1010fc36793fae68da29f6542f06218783 | |
parent | ffb6ff4a93781bde8a71ae77eff69d097fb04a1a (diff) | |
download | ports-70b6e762143fce71a3c399a78dc78314f6042c83.tar.gz ports-70b6e762143fce71a3c399a78dc78314f6042c83.zip |
Notes
-rw-r--r-- | multimedia/xanim/Makefile | 2 | ||||
-rw-r--r-- | multimedia/xanim/files/patch-xa_input.c | 57 |
2 files changed, 58 insertions, 1 deletions
diff --git a/multimedia/xanim/Makefile b/multimedia/xanim/Makefile index ef2b42ab3328..45c795649f3a 100644 --- a/multimedia/xanim/Makefile +++ b/multimedia/xanim/Makefile @@ -7,7 +7,7 @@ PORTNAME= xanim PORTVERSION= 2.92.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia graphics MASTER_SITES= ftp://ftp.informatik.uni-hamburg.de/pub/soft/graphics/xanim/:main \ ${MASTER_SITE_LOCAL} \ diff --git a/multimedia/xanim/files/patch-xa_input.c b/multimedia/xanim/files/patch-xa_input.c new file mode 100644 index 000000000000..d0d03eb48c8a --- /dev/null +++ b/multimedia/xanim/files/patch-xa_input.c @@ -0,0 +1,57 @@ +--- xa_input.c.orig Sun Mar 21 23:36:25 1999 ++++ xa_input.c Thu Jun 7 15:02:43 2007 +@@ -1025,28 +1025,28 @@ + memset(&data,0,sizeof(data)); + memset(&from,0,sizeof(from)); + if (gethostname(hostname, sizeof(hostname)) < 0) +- return(xa_ftp_abort(xin)); ++ return(xa_ftp_abort(*xin)); + if ((host= (struct hostent *)gethostbyname(hostname)) == 0) +- return(xa_ftp_abort(xin)); ++ return(xa_ftp_abort(*xin)); + data.sin_family = host->h_addrtype; + memcpy( (char *)&data.sin_addr, (char *)host->h_addr_list[0], host->h_length); + if ((tmp_sock = socket ( AF_INET , SOCK_STREAM , 0 )) < 0) +- return(xa_ftp_abort(xin)); ++ return(xa_ftp_abort(*xin)); + len = 1; + if (setsockopt(tmp_sock, SOL_SOCKET, SO_REUSEADDR, + (char *)(&len), sizeof(len)) < 0) +- { close(tmp_sock); return(xa_ftp_abort(xin)); } ++ { close(tmp_sock); return(xa_ftp_abort(*xin)); } + + data.sin_port = 0; + if ( bind(tmp_sock, (struct sockaddr *)&data, sizeof(data)) < 0 ) +- { close(tmp_sock); return(xa_ftp_abort(xin)); } ++ { close(tmp_sock); return(xa_ftp_abort(*xin)); } + + len = sizeof(data); + if (getsockname(tmp_sock, (struct sockaddr *)&data, &len) < 0 ) +- { close(tmp_sock); return(xa_ftp_abort(xin)); } ++ { close(tmp_sock); return(xa_ftp_abort(*xin)); } + + if (listen(tmp_sock, 4) < 0 ) +- { close(tmp_sock); return(xa_ftp_abort(xin)); } ++ { close(tmp_sock); return(xa_ftp_abort(*xin)); } + + /* POD add support for PORT command? */ + addr = (xaUBYTE *) (&data.sin_addr); +@@ -1059,15 +1059,15 @@ + + if (xa_ftp_send_cmd(xin, port_cmd, &retcode) == xaFALSE) + { fprintf(stderr,"FTP: send cmd err\n"); +- close(tmp_sock); return(xa_ftp_abort(xin)); } ++ close(tmp_sock); return(xa_ftp_abort(*xin)); } + + if (xa_ftp_send_cmd(xin, file_cmd, &retcode) == xaFALSE) + { fprintf(stderr,"FTP: send cmd err\n"); +- close(tmp_sock); return(xa_ftp_abort(xin)); } ++ close(tmp_sock); return(xa_ftp_abort(*xin)); } + + len = sizeof(from); + xin->dsock = accept((int)tmp_sock, (struct sockaddr *) &from, (int *)&len); +- if (xin->dsock < 0) { close(tmp_sock); return(xa_ftp_abort(xin)); } ++ if (xin->dsock < 0) { close(tmp_sock); return(xa_ftp_abort(*xin)); } + close(tmp_sock); + return(xaTRUE); + } |