Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
15799403
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
9
Star
18
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Openssl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
15799403
编写于
2月 23, 1999
作者:
B
Ben Laurie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix more warnings.
上级
3a1daca9
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
24 addition
and
16 deletion
+24
-16
Configure
Configure
+1
-1
apps/ca.c
apps/ca.c
+4
-4
crypto/des/read_pwd.c
crypto/des/read_pwd.c
+19
-11
未找到文件。
Configure
浏览文件 @
15799403
...
...
@@ -77,7 +77,7 @@ my %table=(
# A few of my development configs
"
purify
",
"
purify gcc:-g -DPURIFY -Wall:-lsocket -lnsl::::
",
"
debug
",
"
gcc:-DBN_DEBUG -DREF_CHECK -DCRYPTO_MDEBUG -ggdb -g2 -Wformat -Wshadow -Wmissing-prototypes -Wmissing-declarations -Werror:-lefence::::
",
"
debug-ben
",
"
gcc:-DBN_DEBUG -DREF_CHECK -DCRYPTO_MDEBUG -
Wall -Wformat
-Wshadow -Werror:::::
",
"
debug-ben
",
"
gcc:-DBN_DEBUG -DREF_CHECK -DCRYPTO_MDEBUG -
O2 -Wall
-Wshadow -Werror:::::
",
"
debug-rse
","
gcc:-DTERMIOS -DL_ENDIAN -O -g -ggdb3 -m486 -Wall::BN_LLONG
$x86_gcc_des
$x86_gcc_opts
:
$x86_out_asm
",
"
dist
",
"
cc:-O -DNOPROTO::::
",
...
...
apps/ca.c
浏览文件 @
15799403
...
...
@@ -2016,15 +2016,15 @@ char *str;
return
(
ASN1_UTCTIME_check
(
&
tm
));
}
static
int
add_oid_section
(
conf
)
LHASH
*
conf
;
static
int
add_oid_section
(
h
conf
)
LHASH
*
h
conf
;
{
char
*
p
;
STACK
*
sktmp
;
CONF_VALUE
*
cnf
;
int
i
;
if
(
!
(
p
=
CONF_get_string
(
conf
,
NULL
,
"oid_section"
)))
return
1
;
if
(
!
(
sktmp
=
CONF_get_section
(
conf
,
p
)))
{
if
(
!
(
p
=
CONF_get_string
(
h
conf
,
NULL
,
"oid_section"
)))
return
1
;
if
(
!
(
sktmp
=
CONF_get_section
(
h
conf
,
p
)))
{
BIO_printf
(
bio_err
,
"problem loading oid section %s
\n
"
,
p
);
return
0
;
}
...
...
crypto/des/read_pwd.c
浏览文件 @
15799403
...
...
@@ -223,14 +223,27 @@ int verify;
TTY_STRUCT
tty_orig
,
tty_new
;
#endif
#endif
int
number
=
5
;
int
ok
=
0
;
int
ps
=
0
;
int
is_a_tty
=
1
;
FILE
*
tty
=
NULL
;
int
number
;
int
ok
;
/* statics are simply to avoid warnings about longjmp clobbering
things */
static
int
ps
;
int
is_a_tty
;
static
FILE
*
tty
;
char
*
p
;
if
(
setjmp
(
save
))
{
ok
=
0
;
goto
error
;
}
number
=
5
;
ok
=
0
;
ps
=
0
;
is_a_tty
=
1
;
tty
=
NULL
;
#ifndef MSDOS
if
((
tty
=
fopen
(
"/dev/tty"
,
"r"
))
==
NULL
)
tty
=
stdin
;
...
...
@@ -267,11 +280,6 @@ int verify;
return
(
-
1
);
#endif
if
(
setjmp
(
save
))
{
ok
=
0
;
goto
error
;
}
pushsig
();
ps
=
1
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录