aboutsummaryrefslogtreecommitdiff
path: root/ftpfs
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2024-06-24 21:56:08 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-06-24 23:29:03 +0200
commit76369501dab992fa4d5451c36b3cbd74896b97a1 (patch)
tree8f0698f0562c16a0341c6b9eb28b670f6ddbe3e7 /ftpfs
parentc60efab86ea82158ae26be56c1bc8684cd54c61b (diff)
downloadhurd-76369501dab992fa4d5451c36b3cbd74896b97a1.tar.gz
hurd-76369501dab992fa4d5451c36b3cbd74896b97a1.tar.bz2
hurd-76369501dab992fa4d5451c36b3cbd74896b97a1.zip
Fix issues with GCC 14.
* ftpfts/ftpfs: use appropriate function signature for interrupt_check. * pfinet/Makefile: turn off warnings in Linux driver code that are now errors in GCC 14. * pfinet/glue-include/linux/socket.h: remove duplicate functions. These are implemented in linux-src/net/core/iovec.c. Message-ID: <pnx5mho5ipgabehscwu2ogk5l7zfjsxpmjz37fuplgbtohwtjj@ofhr2r5xvqm6>
Diffstat (limited to 'ftpfs')
-rw-r--r--ftpfs/ftpfs.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/ftpfs/ftpfs.c b/ftpfs/ftpfs.c
index 794439b4..ba77caed 100644
--- a/ftpfs/ftpfs.c
+++ b/ftpfs/ftpfs.c
@@ -51,8 +51,13 @@ struct ftpfs *ftpfs;
/* Parameters describing the server we're connecting to. */
struct ftp_conn_params *ftpfs_ftp_params = 0;
+static int interrupt_check_hook (struct ftp_conn *)
+{
+ return ports_self_interrupted ();
+}
+
/* customization hooks. */
-struct ftp_conn_hooks ftpfs_ftp_hooks = { interrupt_check: ports_self_interrupted };
+struct ftp_conn_hooks ftpfs_ftp_hooks = { interrupt_check: interrupt_check_hook };
/* The (user-specified) name of the SERVER:FILESYSTEM we're connected too. */
char *ftpfs_remote_fs;