diff options
author | Rod Whitby <rod@whitby.id.au> | 2008-03-28 03:55:03 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2008-03-28 03:55:03 +0000 |
commit | 8fb289de060b5778d79f0ffa16f5bdfccf28112c (patch) | |
tree | 4f2240ef6b3fe0da01a43ec3c0c052ddb7c423e6 | |
parent | 3f8d34e64381f5a5d7a8f06491f43faa47ebf747 (diff) |
ftpd-topfield: Updated to 0.7.5 and added the syslog patch
-rw-r--r-- | packages/ftpd-topfield/files/syslog.patch | 26 | ||||
-rwxr-xr-x | packages/ftpd-topfield/ftpd-topfield_0.7.5.bb (renamed from packages/ftpd-topfield/ftpd-topfield_0.7.4.bb) | 6 |
2 files changed, 30 insertions, 2 deletions
diff --git a/packages/ftpd-topfield/files/syslog.patch b/packages/ftpd-topfield/files/syslog.patch new file mode 100644 index 0000000000..8c2bf294f5 --- /dev/null +++ b/packages/ftpd-topfield/files/syslog.patch @@ -0,0 +1,26 @@ +--- ftpd-topfield/ftpd.c~ 2008-02-16 09:49:30.000000000 +1030 ++++ ftpd-topfield/ftpd.c 2008-03-24 21:45:15.000000000 +1030 +@@ -1190,6 +1190,7 @@ + if (debug) { + fprintf(stderr, "Transfer failed %lld bytes %s\n", (long long)current, srcpath); + } ++ syslog(LOG_INFO, "retrieve: Failed transfer of %s @%Ld", srcpath, (long long)current); + perror_reply (550, name); + } + +@@ -1363,6 +1364,7 @@ + #endif + + if (ret != 0) { ++ syslog(LOG_INFO, "store: Failed transfer of %s @%Ld", destpath, (long long)current); + perror_reply (553, name); + + LOGCMD (*mode == 'w' ? "put" : "append", name); +@@ -1451,6 +1453,7 @@ + } + } + ++ syslog(LOG_INFO, "store: Failed transfer of %s @%Ld", destpath, (long long)current); + /* Failed to cancel the put, so give up */ + perror_reply (426, "Data Connection"); + } diff --git a/packages/ftpd-topfield/ftpd-topfield_0.7.4.bb b/packages/ftpd-topfield/ftpd-topfield_0.7.5.bb index 356a6018a2..74a3743b1e 100755 --- a/packages/ftpd-topfield/ftpd-topfield_0.7.4.bb +++ b/packages/ftpd-topfield/ftpd-topfield_0.7.5.bb @@ -3,9 +3,11 @@ DESCRIPTION = "ftpd-topfield - FTP access to TopField PVR" HOMEPAGE = "http://sourceforge.net/projects/puppy" SECTION = "net" LICENSE = "MIT" +PR = "r1" -SRC_URI = "cvs://anonymous@puppy.cvs.sourceforge.net/cvsroot/puppy;method=pserver;module=ftpd-topfield;tag=FTPD_TOPFIELD_0_7_4 \ - cvs://anonymous@puppy.cvs.sourceforge.net/cvsroot/puppy;method=pserver;module=libtopfield;tag=FTPD_TOPFIELD_0_7_4 \ +SRC_URI = "cvs://anonymous@puppy.cvs.sourceforge.net/cvsroot/puppy;method=pserver;module=ftpd-topfield;tag=FTPD_TOPFIELD_0_7_5 \ + cvs://anonymous@puppy.cvs.sourceforge.net/cvsroot/puppy;method=pserver;module=libtopfield;tag=FTPD_TOPFIELD_0_7_5 \ + file://syslog.patch;patch=1 \ file://init" # The source will end up in the subdirectory 'ftpd-topfield' - no release name |