forked from pool/openscap
dfd5d8718a
Fix build with missing gets declaration (glibc 2.16) OBS-URL: https://build.opensuse.org/request/show/129169 OBS-URL: https://build.opensuse.org/package/show/security/openscap?expand=0&rev=39
15 lines
538 B
Diff
15 lines
538 B
Diff
Index: openscap-0.8.2/lib/stdio.in.h
|
|
===================================================================
|
|
--- openscap-0.8.2.orig/lib/stdio.in.h
|
|
+++ openscap-0.8.2/lib/stdio.in.h
|
|
@@ -733,7 +733,9 @@ _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. */
|
|
+# if HAVE_RAW_DECL_GETS
|
|
_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
|
|
+# endif
|
|
#endif
|
|
|
|
|