Your message dated Fri, 25 May 2012 12:03:36 +0000
with message-id <[email protected]>
and subject line Bug#671873: fixed in netkit-ftp 0.17-27
has caused the Debian Bug report #671873,
regarding ftp with restart point > 4GB fails on 32bit
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
671873: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=671873
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: ftp
Version: 0.17-23
Using RESTart points > 4GB followed by a STORe command fails because
fseek() only takes long arguments instead of long long.
Here's the patch:
mort@p3g-3:~/src/netkit-ftp-0.17$ diff -u ftp/ftp.c.origt ftp/ftp.c
--- ftp/ftp.c.origt 2012-05-07 14:32:52.000000000 -0400
+++ ftp/ftp.c 2012-05-07 14:32:52.000000000 -0400
@@ -725,7 +725,7 @@
if (restart_point &&
(strcmp(cmd, "STOR") == 0 || strcmp(cmd, "APPE") == 0)) {
- if (fseek(fin, restart_point, 0) < 0) {
+ if (lseek(fileno(fin), restart_point, L_SET) < 0) {
fprintf(stderr, "local: %s: %s\n", local,
strerror(errno));
restart_point = 0;
Found on i686, debian 6.0.3
mh
--
Martin Hicks P.Eng. | [email protected]
Bork Consulting Inc. | +1 (613) 266-2296
--- End Message ---
--- Begin Message ---
Source: netkit-ftp
Source-Version: 0.17-27
We believe that the bug you reported is fixed in the latest version of
netkit-ftp, which is due to be installed in the Debian FTP archive:
ftp_0.17-27_i386.deb
to main/n/netkit-ftp/ftp_0.17-27_i386.deb
netkit-ftp_0.17-27.debian.tar.gz
to main/n/netkit-ftp/netkit-ftp_0.17-27.debian.tar.gz
netkit-ftp_0.17-27.dsc
to main/n/netkit-ftp/netkit-ftp_0.17-27.dsc
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Mats Erik Andersson <[email protected]> (supplier of updated
netkit-ftp package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Wed, 23 May 2012 20:08:11 +0200
Source: netkit-ftp
Binary: ftp
Architecture: source i386
Version: 0.17-27
Distribution: unstable
Urgency: low
Maintainer: Alberto Gonzalez Iniesta <[email protected]>
Changed-By: Mats Erik Andersson <[email protected]>
Description:
ftp - classical file transfer client
Closes: 671873
Changes:
netkit-ftp (0.17-27) unstable; urgency=low
.
* Support large files on 32-bit architectures:
* Solution identified by Martin Hicks. (Closes: #671873)
+ debian/patches/060_full_offset_range.diff: New file.
* debian/rules: Hardening via dpkg-buildflags.
* debian/control: Standards 3.9.3, no changes.
+ Building now depends on dpkg-dev (>= 1.15.7).
* Tiny description errors:
+ debian/patches/010_patches_in_sarge.diff: Updated.
Checksums-Sha1:
0c5a9d046578b4e8fef220ac52b24053a39e57d6 1130 netkit-ftp_0.17-27.dsc
c5d9244df8ac5e351a5f65e7bbfea458f4bec3d2 35178 netkit-ftp_0.17-27.debian.tar.gz
150897f16b753d86736898af6714eb727f1960e9 58244 ftp_0.17-27_i386.deb
Checksums-Sha256:
f4fa6a9b0d4cb0b38ea6725098ee7444a22ec7b6b9c6d697f08092fd8610b3b3 1130
netkit-ftp_0.17-27.dsc
ff326aa8d75ed96e587ea2bb2509585c0ba5fab481092f5bdb77fbee26358f08 35178
netkit-ftp_0.17-27.debian.tar.gz
666a3241a00298393d60cd226b5da19e96459eafa6206235d2169ceb8bbb76aa 58244
ftp_0.17-27_i386.deb
Files:
4e92be6aa0966bc7964b9f52a48a33f7 1130 net standard netkit-ftp_0.17-27.dsc
16a5df94ac0f540719de0be3223052e9 35178 net standard
netkit-ftp_0.17-27.debian.tar.gz
1998aade54be0bee1cd0ed85a1429876 58244 net standard ftp_0.17-27_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iEYEARECAAYFAk+/cYkACgkQxRSvjkukAcOkvACgwoqVGwgxH7rc7gP8uagkJaJI
lL0An2Mbh3zhXA3cE+xqa8xJpk1G6A64
=oHjR
-----END PGP SIGNATURE-----
--- End Message ---