nagios报错:./stdio.h:456:1: error: 'gets' undeclared here (not in a function)

简介:
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] #

wKioL1iAd4KyZ0GcAABiyShpOc0229.png

删除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,如需转载请自行联系原作者
相关文章
|
2月前
|
Linux Python
【Azure Function】Python Function部署到Azure后报错No module named '_cffi_backend'
ERROR: Error: No module named '_cffi_backend', Cannot find module. Please check the requirements.txt file for the missing module.
|
4月前
|
缓存
【Azure Function】Function App代码中使用Managed Identity认证获取Blob数据时遇见400报错
【Azure Function】Function App代码中使用Managed Identity认证获取Blob数据时遇见400报错
【Azure Function】Function App代码中使用Managed Identity认证获取Blob数据时遇见400报错
|
4月前
解决微软云Azure Function运行报错-Value cannot be null. (Parameter ‘provider‘)
解决微软云Azure Function运行报错-Value cannot be null. (Parameter ‘provider‘)
93 4
|
4月前
|
存储 网络安全 数据中心
【Azure 应用服务】Function App / App Service 连接 Blob 报错
【Azure 应用服务】Function App / App Service 连接 Blob 报错
|
4月前
|
Python
【Azure 应用服务】Azure Function HTTP Trigger 遇见奇妙的500 Internal Server Error: Failed to forward request to http://169.254.130.x
【Azure 应用服务】Azure Function HTTP Trigger 遇见奇妙的500 Internal Server Error: Failed to forward request to http://169.254.130.x
|
4月前
【Azure 应用服务】Azure Function 启用 Managed Identity后, Powershell Funciton出现 ERROR: ManagedIdentityCredential authentication failed
【Azure 应用服务】Azure Function 启用 Managed Identity后, Powershell Funciton出现 ERROR: ManagedIdentityCredential authentication failed
|
4月前
|
JavaScript 前端开发 C++
【Azure Function】调试 VS Code Javascript Function本地不能运行,报错 Value cannot be null. (Parameter 'provider')问题
【Azure Function】调试 VS Code Javascript Function本地不能运行,报错 Value cannot be null. (Parameter 'provider')问题
|
4月前
|
SQL DataWorks 关系型数据库
DataWorks操作报错合集之如何处理在DI节点同步到OceanBase数据库时,出现SQLException: Not supported feature or function
DataWorks是阿里云提供的一站式大数据开发与治理平台,支持数据集成、数据开发、数据服务、数据质量管理、数据安全管理等全流程数据处理。在使用DataWorks过程中,可能会遇到各种操作报错。以下是一些常见的报错情况及其可能的原因和解决方法。
|
1月前
|
中间件 Docker Python
【Azure Function】FTP上传了Python Function文件后,无法在门户页面加载函数的问题
通过FTP上传Python Function至Azure云后,出现函数列表无法加载的问题。经排查,发现是由于`requirements.txt`中的依赖包未被正确安装。解决方法为:在本地安装依赖包到`.python_packages/lib/site-packages`目录,再将该目录内容上传至云上的`wwwroot`目录,并重启应用。最终成功加载函数列表。
|
2月前
|
JavaScript
箭头函数与普通函数(function)的区别
箭头函数是ES6引入的新特性,与传统函数相比,它有更简洁的语法,且没有自己的this、arguments、super或new.target绑定,而是继承自外层作用域。箭头函数不适用于构造函数,不能使用new关键字调用。

热门文章

最新文章