0
0
mirror of https://github.com/openwrt/packages.git synced 2025-02-07 06:59:51 +00:00
packages/utils/zile/patches/010-remove_gets_definition_warning.patch
Ted Hess 43a71474f6 zile: fix gcc5 build issues
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-11-23 09:01:56 -05:00

12 lines
416 B
Diff

--- a/lib/stdio.in.h
+++ b/lib/stdio.in.h
@@ -733,7 +733,7 @@ _GL_CXXALIASWARN (gets);
/* 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. */
-_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
+#define gets(a) fgets( a, sizeof(*(a)), stdin)
#endif