aboutsummaryrefslogtreecommitdiff
path: root/sysutils/e2fsprogs/files/patch-lib_uuid_uuid__time.c
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2018-07-10 13:48:31 +0000
committerMatthias Andree <mandree@FreeBSD.org>2018-07-10 13:48:31 +0000
commit9867fe279079da535cfc00004d29593f568d3cbc (patch)
treedd36a37fcbf632cb9dee44934c7dcf465d40c955 /sysutils/e2fsprogs/files/patch-lib_uuid_uuid__time.c
parentb9ae6241fe245257b84ea05eff1e83e0592556e3 (diff)
downloadports-9867fe279079da535cfc00004d29593f568d3cbc.tar.gz
ports-9867fe279079da535cfc00004d29593f568d3cbc.zip
Update to new upstream release 1.44.3.
* several features for debugfs added * there is a new e2mmpstatus command * there are several bug fixes, among them endianness fixes and robustness fixes against corrupted input. * add hashmap.h header file, for libext2fs users * a few type fixes for format strings, found while building for MIPS, ARM, or i386 * add new option SLOWTESTS which prevents skipping of slow tests * add new option BASHTESTS which enables tests that require bash (currently affects only the test f_large_dir that is also marked as slow) Full release notes: <http://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.44.3> Reset PORTREVISION in slave ports, e2fsprogs{-libss,-libuuid} now that we have bumped PORTVERSION. MFH: 2018Q3
Notes
Notes: svn path=/head/; revision=474369
Diffstat (limited to 'sysutils/e2fsprogs/files/patch-lib_uuid_uuid__time.c')
-rw-r--r--sysutils/e2fsprogs/files/patch-lib_uuid_uuid__time.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/sysutils/e2fsprogs/files/patch-lib_uuid_uuid__time.c b/sysutils/e2fsprogs/files/patch-lib_uuid_uuid__time.c
new file mode 100644
index 000000000000..3d36861636d5
--- /dev/null
+++ b/sysutils/e2fsprogs/files/patch-lib_uuid_uuid__time.c
@@ -0,0 +1,11 @@
+--- lib/uuid/uuid_time.c.orig 2018-07-10 05:14:26 UTC
++++ lib/uuid/uuid_time.c
+@@ -165,7 +165,7 @@ main(int argc, char **argv)
+ printf("Warning: not a time-based UUID, so UUID time "
+ "decoding will likely not work!\n");
+ }
+- printf("UUID time is: (%ld, %ld): %s\n", tv.tv_sec, (long)tv.tv_usec,
++ printf("UUID time is: (%ld, %ld): %s\n", (long)tv.tv_sec, (long)tv.tv_usec,
+ ctime(&time_reg));
+
+ return 0;