博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nagios报错:./stdio.h:456:1: error: 'gets' undeclared here (not in a function)
阅读量:6003 次
发布时间:2019-06-20

本文共 1427 字,大约阅读时间需要 4 分钟。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[root@localhost nagios-plugins-1.4.16]
# ./configure
[root@localhost nagios-plugins-1.4.16]
# make 
mv 
-f .deps
/full-write
.Tpo .deps
/full-write
.Po
gcc -DHAVE_CONFIG_H -I. -I..  -I..
/intl   
-g -O2 -MT localcharset.o -MD -MP -MF .deps
/localcharset
.Tpo -c -o localcharset.o localcharset.c
In 
file 
included from localcharset.c:26:0:
.
/stdio
.h:456:1: error: ‘gets’ undeclared here (not 
in 
function
)
 
_GL_WARN_ON_USE (gets, 
"gets is a security hole - use fgets instead"
);
 
^
make
[4]: *** [localcharset.o] Error 1
make
[4]: Leaving directory `
/usr/local/monitor/nagios-plugins-1
.4.16
/gl
'
make
[3]: *** [all-recursive] Error 1
make
[3]: Leaving directory `
/usr/local/monitor/nagios-plugins-1
.4.16
/gl
'
make
[2]: *** [all] Error 2
make
[2]: Leaving directory `
/usr/local/monitor/nagios-plugins-1
.4.16
/gl
'
make
[1]: *** [all-recursive] Error 1
make
[1]: Leaving directory `
/usr/local/monitor/nagios-plugins-1
.4.16'
make
: *** [all] Error 2
[root@localhost nagios-plugins-1.4.16]
#

删除stdio.in.h文件中_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");行

1
2
3
[root@localhost nagios-plugins-1.4.16]
# find / -iname stdio.in.h
/usr/local/monitor/nagios-plugins-1
.4.16
/gl/stdio
.
in
.h
[root@localhost nagios-plugins-1.4.16]
# sed -i '/gets is a security/d' gl/stdio.in.h
本文转自 justin_peng 51CTO博客,原文链接:http://blog.51cto.com/ityunwei2017/1893212,如需转载请自行联系原作者
你可能感兴趣的文章
汽车知识:车内异味的清除方法
查看>>
在windows中将Tomcat作为服务启动
查看>>
IE6 7下绝对定位引发浮动元素神秘消失
查看>>
android - ADT本地配置、sdk配置
查看>>
I.MX6 dhcpcd 需要指定网卡
查看>>
利用Python进行数据分析(9) pandas基础: 汇总统计和计算
查看>>
SGU 105 Div 3
查看>>
jQuery页面滚动 动态加载图片等元素
查看>>
几条复杂的SQL语句
查看>>
VS2010安装完SP1后再安装Silverlight Tools 4遇到的问题解决办法
查看>>
校验插入指定结点是否导致编码循环的示例函数
查看>>
编码问题
查看>>
Sharepoint学习笔记-- Debug&TroubleShooting--调试Sharepoint环境中的Javascript/ECMAScript
查看>>
Oracle Bitmap 索引结构、如何存储及其优势
查看>>
[置顶] ios 网页中图片点击放大效果demo
查看>>
***php解析JSON二维数组字符串(json_decode函数第二个参数True和False的区别)
查看>>
【OpenStack】OpenStack系列7之Nova详解
查看>>
poj 1114 完全背包 dp
查看>>
pyenv的使用
查看>>
PHP 数组的拷贝是按值传递 or 按引用传递
查看>>