diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 14:37:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 14:37:39 +0000 |
commit | c015179efce5825c16d68ec81530d82631cd2cf7 (patch) | |
tree | 186c902f87903d06ece7d840b230c37383e86f50 /debian/patches/1004909-ftbfs-kfreebsd | |
parent | Adding upstream version 1.9.13p3. (diff) | |
download | sudo-c015179efce5825c16d68ec81530d82631cd2cf7.tar.xz sudo-c015179efce5825c16d68ec81530d82631cd2cf7.zip |
Adding debian version 1.9.13p3-1+deb12u1.debian/1.9.13p3-1+deb12u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/1004909-ftbfs-kfreebsd')
-rw-r--r-- | debian/patches/1004909-ftbfs-kfreebsd | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/debian/patches/1004909-ftbfs-kfreebsd b/debian/patches/1004909-ftbfs-kfreebsd new file mode 100644 index 0000000..1451b30 --- /dev/null +++ b/debian/patches/1004909-ftbfs-kfreebsd @@ -0,0 +1,24 @@ +Description: Fix FTBFS Issue on kFreeBSD +Author: Laurent Bigonville <bigon@debian.org> +Bug: https://bugs.debian.org/1004909 +Forwarded: https://bugzilla.sudo.ws/show_bug.cgi?id=1021 +--- a/include/sudo_compat.h ++++ b/include/sudo_compat.h +@@ -472,7 +472,7 @@ sudo_dso_public time_t sudo_timegm(struc + #ifndef HAVE_UTIMENSAT + sudo_dso_public int sudo_utimensat(int fd, const char *file, const struct timespec *times, int flag); + # undef utimensat +-# define utimensat(_a, _b, _c, _d) sudo_utimensat((_a), (_b), (_c), (_d)) ++# define utimensat(_a, _b, _c, _d) sudo_utimensat(_a, _b, _c, _d) + #endif /* HAVE_UTIMENSAT */ + #ifndef HAVE_FCHMODAT + sudo_dso_public int sudo_fchmodat(int dfd, const char *path, mode_t mode, int flag); +@@ -487,7 +487,7 @@ sudo_dso_public int sudo_fstatat(int dfd + #ifndef HAVE_FUTIMENS + sudo_dso_public int sudo_futimens(int fd, const struct timespec *times); + # undef futimens +-# define futimens(_a, _b) sudo_futimens((_a), (_b)) ++# define futimens(_a, _b) sudo_futimens(_a, _b) + #endif /* HAVE_FUTIMENS */ + #if !defined(HAVE_SNPRINTF) || defined(PREFER_PORTABLE_SNPRINTF) + sudo_dso_public int sudo_snprintf(char *str, size_t n, char const *fmt, ...) __printflike(3, 4); |