Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
ab3eafd5
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
ab3eafd5
编写于
5月 31, 2008
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Stop warning about extra ';' outside of function.
上级
dd043cd5
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
9 addition
and
9 deletion
+9
-9
apps/openssl.c
apps/openssl.c
+2
-2
crypto/conf/conf.h
crypto/conf/conf.h
+1
-1
crypto/err/err.c
crypto/err/err.c
+4
-4
crypto/ex_data.c
crypto/ex_data.c
+2
-2
未找到文件。
apps/openssl.c
浏览文件 @
ab3eafd5
...
@@ -595,13 +595,13 @@ static int MS_CALLBACK function_cmp(const FUNCTION *a, const FUNCTION *b)
...
@@ -595,13 +595,13 @@ static int MS_CALLBACK function_cmp(const FUNCTION *a, const FUNCTION *b)
{
{
return
strncmp
(
a
->
name
,
b
->
name
,
8
);
return
strncmp
(
a
->
name
,
b
->
name
,
8
);
}
}
static
IMPLEMENT_LHASH_COMP_FN
(
function
,
FUNCTION
)
;
static
IMPLEMENT_LHASH_COMP_FN
(
function
,
FUNCTION
)
static
unsigned
long
MS_CALLBACK
function_hash
(
const
FUNCTION
*
a
)
static
unsigned
long
MS_CALLBACK
function_hash
(
const
FUNCTION
*
a
)
{
{
return
lh_strhash
(
a
->
name
);
return
lh_strhash
(
a
->
name
);
}
}
static
IMPLEMENT_LHASH_HASH_FN
(
function
,
FUNCTION
)
;
static
IMPLEMENT_LHASH_HASH_FN
(
function
,
FUNCTION
)
static
LHASH_OF
(
FUNCTION
)
*
prog_init
(
void
)
static
LHASH_OF
(
FUNCTION
)
*
prog_init
(
void
)
{
{
...
...
crypto/conf/conf.h
浏览文件 @
ab3eafd5
...
@@ -78,7 +78,7 @@ typedef struct
...
@@ -78,7 +78,7 @@ typedef struct
char
*
value
;
char
*
value
;
}
CONF_VALUE
;
}
CONF_VALUE
;
DECLARE_STACK_OF
(
CONF_VALUE
)
;
DECLARE_STACK_OF
(
CONF_VALUE
)
DECLARE_LHASH_OF
(
CONF_VALUE
);
DECLARE_LHASH_OF
(
CONF_VALUE
);
struct
conf_st
;
struct
conf_st
;
...
...
crypto/err/err.c
浏览文件 @
ab3eafd5
...
@@ -337,14 +337,14 @@ static unsigned long err_string_data_hash(const ERR_STRING_DATA *a)
...
@@ -337,14 +337,14 @@ static unsigned long err_string_data_hash(const ERR_STRING_DATA *a)
ret
=
l
^
ERR_GET_LIB
(
l
)
^
ERR_GET_FUNC
(
l
);
ret
=
l
^
ERR_GET_LIB
(
l
)
^
ERR_GET_FUNC
(
l
);
return
(
ret
^
ret
%
19
*
13
);
return
(
ret
^
ret
%
19
*
13
);
}
}
static
IMPLEMENT_LHASH_HASH_FN
(
err_string_data
,
ERR_STRING_DATA
)
;
static
IMPLEMENT_LHASH_HASH_FN
(
err_string_data
,
ERR_STRING_DATA
)
static
int
err_string_data_cmp
(
const
ERR_STRING_DATA
*
a
,
static
int
err_string_data_cmp
(
const
ERR_STRING_DATA
*
a
,
const
ERR_STRING_DATA
*
b
)
const
ERR_STRING_DATA
*
b
)
{
{
return
(
int
)(
a
->
error
-
b
->
error
);
return
(
int
)(
a
->
error
-
b
->
error
);
}
}
static
IMPLEMENT_LHASH_COMP_FN
(
err_string_data
,
ERR_STRING_DATA
)
;
static
IMPLEMENT_LHASH_COMP_FN
(
err_string_data
,
ERR_STRING_DATA
)
static
LHASH_OF
(
ERR_STRING_DATA
)
*
int_err_get
(
int
create
)
static
LHASH_OF
(
ERR_STRING_DATA
)
*
int_err_get
(
int
create
)
{
{
...
@@ -430,13 +430,13 @@ static unsigned long err_state_hash(const ERR_STATE *a)
...
@@ -430,13 +430,13 @@ static unsigned long err_state_hash(const ERR_STATE *a)
{
{
return
CRYPTO_THREADID_hash
(
&
a
->
tid
);
return
CRYPTO_THREADID_hash
(
&
a
->
tid
);
}
}
static
IMPLEMENT_LHASH_HASH_FN
(
err_state
,
ERR_STATE
)
;
static
IMPLEMENT_LHASH_HASH_FN
(
err_state
,
ERR_STATE
)
static
int
err_state_cmp
(
const
ERR_STATE
*
a
,
const
ERR_STATE
*
b
)
static
int
err_state_cmp
(
const
ERR_STATE
*
a
,
const
ERR_STATE
*
b
)
{
{
return
CRYPTO_THREADID_cmp
(
&
a
->
tid
,
&
b
->
tid
);
return
CRYPTO_THREADID_cmp
(
&
a
->
tid
,
&
b
->
tid
);
}
}
static
IMPLEMENT_LHASH_COMP_FN
(
err_state
,
ERR_STATE
)
;
static
IMPLEMENT_LHASH_COMP_FN
(
err_state
,
ERR_STATE
)
static
LHASH_OF
(
ERR_STATE
)
*
int_thread_get
(
int
create
)
static
LHASH_OF
(
ERR_STATE
)
*
int_thread_get
(
int
create
)
{
{
...
...
crypto/ex_data.c
浏览文件 @
ab3eafd5
...
@@ -253,13 +253,13 @@ static unsigned long ex_class_item_hash(const EX_CLASS_ITEM *a)
...
@@ -253,13 +253,13 @@ static unsigned long ex_class_item_hash(const EX_CLASS_ITEM *a)
{
{
return
a
->
class_index
;
return
a
->
class_index
;
}
}
static
IMPLEMENT_LHASH_HASH_FN
(
ex_class_item
,
EX_CLASS_ITEM
)
;
static
IMPLEMENT_LHASH_HASH_FN
(
ex_class_item
,
EX_CLASS_ITEM
)
static
int
ex_class_item_cmp
(
const
EX_CLASS_ITEM
*
a
,
const
EX_CLASS_ITEM
*
b
)
static
int
ex_class_item_cmp
(
const
EX_CLASS_ITEM
*
a
,
const
EX_CLASS_ITEM
*
b
)
{
{
return
a
->
class_index
-
b
->
class_index
;
return
a
->
class_index
-
b
->
class_index
;
}
}
static
IMPLEMENT_LHASH_COMP_FN
(
ex_class_item
,
EX_CLASS_ITEM
)
;
static
IMPLEMENT_LHASH_COMP_FN
(
ex_class_item
,
EX_CLASS_ITEM
)
/* Internal functions used by the "impl_default" implementation to access the
/* Internal functions used by the "impl_default" implementation to access the
* state */
* state */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录