diff options
author | mandree <mandree@FreeBSD.org> | 2013-06-28 07:29:03 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2013-06-28 07:29:03 +0800 |
commit | 319c7fb3bb9f9b8a95b5c5ee0c6cd871c83833ab (patch) | |
tree | e1277e8adfe1335ca641365b4c05f3c64bcfbce3 /sysutils | |
parent | b83775019f74a1537016c897085909e74532fcc1 (diff) | |
download | freebsd-ports-gnome-319c7fb3bb9f9b8a95b5c5ee0c6cd871c83833ab.tar.gz freebsd-ports-gnome-319c7fb3bb9f9b8a95b5c5ee0c6cd871c83833ab.tar.zst freebsd-ports-gnome-319c7fb3bb9f9b8a95b5c5ee0c6cd871c83833ab.zip |
Kill three compiler warnings.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/e2fsprogs/files/patch-misc__tune2fs.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sysutils/e2fsprogs/files/patch-misc__tune2fs.c b/sysutils/e2fsprogs/files/patch-misc__tune2fs.c new file mode 100644 index 000000000000..4dc57102351b --- /dev/null +++ b/sysutils/e2fsprogs/files/patch-misc__tune2fs.c @@ -0,0 +1,21 @@ +--- ./misc/tune2fs.c.orig 2013-06-21 04:43:42.000000000 +0200 ++++ ./misc/tune2fs.c 2013-06-28 01:08:29.000000000 +0200 +@@ -25,8 +25,6 @@ + * 94/03/06 - Added the checks interval from Uwe Ohse (uwe@tirka.gun.de) + */ + +-#define _XOPEN_SOURCE 600 /* for inclusion of strptime() */ +-#define _BSD_SOURCE /* for inclusion of strcasecmp() */ + #include "config.h" + #include <fcntl.h> + #include <grp.h> +@@ -48,6 +46,9 @@ + #include <libgen.h> + #include <limits.h> + ++#include <netinet/in.h> ++#include <strings.h> ++ + #include "ext2fs/ext2_fs.h" + #include "ext2fs/ext2fs.h" + #include "et/com_err.h" |