Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | ISO C11 removes the specification of gets() from the C language, eglibc 2.16+ removed it |
| 2 | |
| 3 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 4 | |
| 5 | Upstream-Status: Pending |
| 6 | Index: cpio-2.11/gnu/stdio.in.h |
| 7 | =================================================================== |
| 8 | --- cpio-2.11.orig/gnu/stdio.in.h 2012-07-04 12:13:43.133066247 -0700 |
| 9 | +++ cpio-2.11/gnu/stdio.in.h 2012-07-04 12:14:10.189067564 -0700 |
| 10 | @@ -138,8 +138,10 @@ |
| 11 | /* It is very rare that the developer ever has full control of stdin, |
| 12 | so any use of gets warrants an unconditional warning. Assume it is |
| 13 | always declared, since it is required by C89. */ |
| 14 | +#if defined gets |
| 15 | #undef gets |
| 16 | _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead"); |
| 17 | +#endif |
| 18 | |
| 19 | #if @GNULIB_FOPEN@ |
| 20 | # if @REPLACE_FOPEN@ |