diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-04-08 21:39:27 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-04-08 21:39:27 +0000 |
commit | 1a8aa9bab8d6dd3d5f54276ca7d78a2c00ce1b27 (patch) | |
tree | d5fd687087b8641b41075297f20021ce9af388ea /ftp/lftp/files | |
parent | Add haddock to BUILD_DEPENDS do not replace BUILD_DEPENDS with haddock! (diff) |
- Update to 3.0.1
PR: ports/65338
Submitted by: Dmitry A. Yanko <fm@code.org.ua> (maintainer)
Notes
Notes:
svn path=/head/; revision=106519
Diffstat (limited to 'ftp/lftp/files')
-rw-r--r-- | ftp/lftp/files/patch-src::FtpListInfo.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ftp/lftp/files/patch-src::FtpListInfo.cc b/ftp/lftp/files/patch-src::FtpListInfo.cc new file mode 100644 index 000000000000..fd877dffeca5 --- /dev/null +++ b/ftp/lftp/files/patch-src::FtpListInfo.cc @@ -0,0 +1,11 @@ +--- src/FtpListInfo.cc.orig Thu Apr 8 23:53:22 2004 ++++ src/FtpListInfo.cc Thu Apr 8 23:53:35 2004 +@@ -788,7 +788,7 @@ + } + if(!strncasecmp(tok,"Size=",5)) + { +- size=atoll(tok+5); ++ size=strtoll(tok+5, NULL, 10); + continue; + } + if(!strncasecmp(tok,"Perm=",5)) |