aboutsummaryrefslogtreecommitdiff
path: root/sysutils/e2fsprogs/files/patch-lib_uuid_tst__uuid.c
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2019-12-21 13:26:50 +0000
committerMatthias Andree <mandree@FreeBSD.org>2019-12-21 13:26:50 +0000
commit3367c555dd63dfd88ba33b5b1c4f6045df4b943c (patch)
treef4cf641e8e0c89d2793c77d48e05fc0fa0f5e345 /sysutils/e2fsprogs/files/patch-lib_uuid_tst__uuid.c
parent345eef1ee0f6672428f41f2cc5c04f8f0ca76c42 (diff)
downloadports-3367c555dd63dfd88ba33b5b1c4f6045df4b943c.tar.gz
ports-3367c555dd63dfd88ba33b5b1c4f6045df4b943c.zip
MFH: r520555
sysutils/e2fsprogs: update to 1.45.4 (security fix) Release Notes: http://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.45.4 This removes some patches or hunks that were integrated upstream. Security: ad3451b9-23e0-11ea-8b36-f1925a339a82 Security: CVE-2019-5094 Approved by: ports-secteam@ (joneum)
Notes
Notes: svn path=/branches/2019Q4/; revision=520564
Diffstat (limited to 'sysutils/e2fsprogs/files/patch-lib_uuid_tst__uuid.c')
-rw-r--r--sysutils/e2fsprogs/files/patch-lib_uuid_tst__uuid.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/sysutils/e2fsprogs/files/patch-lib_uuid_tst__uuid.c b/sysutils/e2fsprogs/files/patch-lib_uuid_tst__uuid.c
deleted file mode 100644
index e39cc8b5481d..000000000000
--- a/sysutils/e2fsprogs/files/patch-lib_uuid_tst__uuid.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- lib/uuid/tst_uuid.c.orig 2018-07-10 05:14:26 UTC
-+++ lib/uuid/tst_uuid.c
-@@ -144,7 +144,7 @@ main(int argc ATTR((unused)) , char **ar
- tv.tv_usec = 0;
- time_reg = uuid_time(buf, &tv);
- printf("UUID generated at %lu reports %lu (%ld.%ld)\n",
-- time_gen, time_reg, tv.tv_sec, (long)tv.tv_usec);
-+ (unsigned long)time_gen, (unsigned long)time_reg, (long)tv.tv_sec, (long)tv.tv_usec);
- /* allow 1s margin in case of rollover between sampling
- * the current time and when the UUID is generated. */
- if (time_reg > time_gen + 1) {