commit:     6c28cf90f1e2ae966e08aaeaa5a2ee3334217ee8
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Mon Jul 15 16:57:39 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jul 21 15:04:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c28cf90

net-ftp/filezilla: remove unused patch

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/37568
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 .../filezilla/files/filezilla-3.66.4-gcc14.patch   | 27 ----------------------
 1 file changed, 27 deletions(-)

diff --git a/net-ftp/filezilla/files/filezilla-3.66.4-gcc14.patch 
b/net-ftp/filezilla/files/filezilla-3.66.4-gcc14.patch
deleted file mode 100644
index 0c66931d31aa..000000000000
--- a/net-ftp/filezilla/files/filezilla-3.66.4-gcc14.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff --git a/src/putty/unix/uxsftp.c b/src/putty/unix/uxsftp.c
-index f078d97..05ec2ff 100644
---- a/src/putty/unix/uxsftp.c
-+++ b/src/putty/unix/uxsftp.c
-@@ -211,7 +211,7 @@ int read_from_file(RFile *f, void *buffer, int length)
- #if 1
-     if (f->state == ok && !f->remaining_) {
-         fznotify1(sftp_io_nextbuf, 0);
--        char const* s = priority_read();
-+        char *s = priority_read();
-         if (s[1] == '-') {
-             f->state = error;
-             return -1;
-@@ -220,11 +220,11 @@ int read_from_file(RFile *f, void *buffer, int length)
-             f->state = eof;
-         }
-         else {
--            char const* p = s + 1;
-+            char *p = s + 1;
-             f->buffer_ = f->memory_ + next_int(&p);
-             f->remaining_ = (int)next_int(&p);
-         }
--        sfree(s);
-+        sfree((void *)s);
-     }
-     if (f->state == eof) {
-         return 0;

Reply via email to