summaryrefslogtreecommitdiff
path: root/net-ftp/filezilla/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-01-09 19:03:28 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-01-09 19:03:28 +0000
commitf03f06fb7152586e3084ebabe54d93f28da8bf6d (patch)
treef476e8d7696af448ddbe831c85e80189b64bc411 /net-ftp/filezilla/files
parentc6985b401141ea8b5ec4b95c4ad3a5a21ef32571 (diff)
gentoo auto-resync : 09:01:2024 - 19:03:28
Diffstat (limited to 'net-ftp/filezilla/files')
-rw-r--r--net-ftp/filezilla/files/filezilla-3.66.4-gcc14.patch27
1 files changed, 27 insertions, 0 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
new file mode 100644
index 000000000000..0c66931d31aa
--- /dev/null
+++ b/net-ftp/filezilla/files/filezilla-3.66.4-gcc14.patch
@@ -0,0 +1,27 @@
+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;