Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
4327aae8
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看板
提交
4327aae8
编写于
2月 06, 2001
作者:
U
Ulf Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
format strings
上级
741a9690
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
11 addition
and
12 deletion
+11
-12
MacOS/GetHTTPS.src/GetHTTPS.cpp
MacOS/GetHTTPS.src/GetHTTPS.cpp
+2
-2
apps/ca.c
apps/ca.c
+1
-1
apps/ciphers.c
apps/ciphers.c
+1
-1
apps/crl.c
apps/crl.c
+1
-1
apps/sess_id.c
apps/sess_id.c
+1
-1
apps/x509.c
apps/x509.c
+1
-1
crypto/rc4/rc4.c
crypto/rc4/rc4.c
+1
-1
demos/tunala/tunala.c
demos/tunala/tunala.c
+3
-4
未找到文件。
MacOS/GetHTTPS.src/GetHTTPS.cpp
浏览文件 @
4327aae8
...
...
@@ -167,7 +167,7 @@ void main(void)
tempString
[
bytesRead
]
=
'\0'
;
printf
(
tempString
);
printf
(
"%s"
,
tempString
);
}
printf
(
"
\n\n\n
"
);
...
...
@@ -201,7 +201,7 @@ EXITPOINT:
{
printf
(
"An error occurred:
\n
"
);
printf
(
GetErrorMessage
());
printf
(
"%s"
,
GetErrorMessage
());
}
...
...
apps/ca.c
浏览文件 @
4327aae8
...
...
@@ -479,7 +479,7 @@ bad:
if
(
badops
)
{
for
(
pp
=
ca_usage
;
(
*
pp
!=
NULL
);
pp
++
)
BIO_printf
(
bio_err
,
*
pp
);
BIO_printf
(
bio_err
,
"%s"
,
*
pp
);
goto
err
;
}
...
...
apps/ciphers.c
浏览文件 @
4327aae8
...
...
@@ -150,7 +150,7 @@ int MAIN(int argc, char **argv)
if
(
badops
)
{
for
(
pp
=
ciphers_usage
;
(
*
pp
!=
NULL
);
pp
++
)
BIO_printf
(
bio_err
,
*
pp
);
BIO_printf
(
bio_err
,
"%s"
,
*
pp
);
goto
end
;
}
...
...
apps/crl.c
浏览文件 @
4327aae8
...
...
@@ -214,7 +214,7 @@ int MAIN(int argc, char **argv)
{
bad:
for
(
pp
=
crl_usage
;
(
*
pp
!=
NULL
);
pp
++
)
BIO_printf
(
bio_err
,
*
pp
);
BIO_printf
(
bio_err
,
"%s"
,
*
pp
);
goto
end
;
}
...
...
apps/sess_id.c
浏览文件 @
4327aae8
...
...
@@ -156,7 +156,7 @@ int MAIN(int argc, char **argv)
{
bad:
for
(
pp
=
sess_id_usage
;
(
*
pp
!=
NULL
);
pp
++
)
BIO_printf
(
bio_err
,
*
pp
);
BIO_printf
(
bio_err
,
"%s"
,
*
pp
);
goto
end
;
}
...
...
apps/x509.c
浏览文件 @
4327aae8
...
...
@@ -435,7 +435,7 @@ int MAIN(int argc, char **argv)
{
bad:
for
(
pp
=
x509_usage
;
(
*
pp
!=
NULL
);
pp
++
)
BIO_printf
(
bio_err
,
*
pp
);
BIO_printf
(
bio_err
,
"%s"
,
*
pp
);
goto
end
;
}
...
...
crypto/rc4/rc4.c
浏览文件 @
4327aae8
...
...
@@ -113,7 +113,7 @@ int main(int argc, char *argv[])
{
bad:
for
(
pp
=
usage
;
(
*
pp
!=
NULL
);
pp
++
)
fprintf
(
stderr
,
*
pp
);
fprintf
(
stderr
,
"%s"
,
*
pp
);
exit
(
1
);
}
...
...
demos/tunala/tunala.c
浏览文件 @
4327aae8
...
...
@@ -186,14 +186,13 @@ static int usage(const char *errstr, int isunknownarg)
static
int
err_str0
(
const
char
*
str0
)
{
fprintf
(
stderr
,
str0
);
fprintf
(
stderr
,
"
\n
"
);
fprintf
(
stderr
,
"%s
\n
"
,
str0
);
return
1
;
}
static
int
err_str1
(
const
char
*
str0
,
const
char
*
str1
)
static
int
err_str1
(
const
char
*
fmt
,
const
char
*
str1
)
{
fprintf
(
stderr
,
str0
,
str1
);
fprintf
(
stderr
,
fmt
,
str1
);
fprintf
(
stderr
,
"
\n
"
);
return
1
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录