aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/augeas/augeas/remove-gets.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/augeas/augeas/remove-gets.patch')
-rw-r--r--meta/recipes-extended/augeas/augeas/remove-gets.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/meta/recipes-extended/augeas/augeas/remove-gets.patch b/meta/recipes-extended/augeas/augeas/remove-gets.patch
deleted file mode 100644
index bd6e92cc66..0000000000
--- a/meta/recipes-extended/augeas/augeas/remove-gets.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-eglibc 2.16 has remove gets so check for it to be there before using it
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
-Index: augeas-0.10.0/gnulib/lib/stdio.in.h
-===================================================================
---- augeas-0.10.0.orig/gnulib/lib/stdio.in.h 2011-03-03 17:07:59.000000000 -0800
-+++ augeas-0.10.0/gnulib/lib/stdio.in.h 2012-07-03 19:46:42.871894833 -0700
-@@ -161,8 +161,10 @@
- /* It is very rare that the developer ever has full control of stdin,
- so any use of gets warrants an unconditional warning. Assume it is
- always declared, since it is required by C89. */
-+#if defined gets
- #undef gets
- _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
-+#endif
-
- #if @GNULIB_FOPEN@
- # if @REPLACE_FOPEN@