1 Star 0 Fork 9

王歌/procinfo

forked from src-openEuler/procinfo 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
procinfo-18-version.patch 742 Bytes
一键复制 编辑 原始数据 按行查看 历史
Grooooot 提交于 2020-02-19 10:01 . init the package
diff -up procinfo-18/routines.c.version procinfo-18/routines.c
--- procinfo-18/routines.c.version 2010-10-12 13:37:18.000000000 +0200
+++ procinfo-18/routines.c 2010-10-12 13:40:29.166001055 +0200
@@ -273,6 +273,13 @@ make_version (FILE * versionfp)
ret = sscanf (line, "Linux version %s (%[^)]) (gcc %[^(] (%*[^)])) #%s %[^\n]",
ver, host, gcc, compno, date);
+ if (ret != 5) { /* Red Hat has different format of gcc version... */
+ ret = sscanf (line, "Linux version %s (%[^)]) (gcc %[^)]) (%*[^)]) ) #%s %[^\n]",
+ ver, host, gcc, compno, date);
+ if(ret == 5)
+ strcat(gcc, ")");
+ }
+
if (ret == 3) { /* At least we've got ver & host right... */
strcpy (gcc, "[can't parse]");
strcpy (compno, "???");
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wang--ge/procinfo.git
git@gitee.com:wang--ge/procinfo.git
wang--ge
procinfo
procinfo
master

搜索帮助