mirror of
https://github.com/clearml/dropbear
synced 2025-02-07 13:21:15 +00:00
Suspicious use of &
This commit is contained in:
parent
1dba0d4830
commit
f3a6dd139c
16
ltc_prng.c
16
ltc_prng.c
@ -123,14 +123,14 @@ int dropbear_prng_test(void)
|
|||||||
const struct ltc_prng_descriptor dropbear_prng_desc =
|
const struct ltc_prng_descriptor dropbear_prng_desc =
|
||||||
{
|
{
|
||||||
"dropbear_prng", 0,
|
"dropbear_prng", 0,
|
||||||
&dropbear_prng_start,
|
dropbear_prng_start,
|
||||||
&dropbear_prng_add_entropy,
|
dropbear_prng_add_entropy,
|
||||||
&dropbear_prng_ready,
|
dropbear_prng_ready,
|
||||||
&dropbear_prng_read,
|
dropbear_prng_read,
|
||||||
&dropbear_prng_done,
|
dropbear_prng_done,
|
||||||
&dropbear_prng_export,
|
dropbear_prng_export,
|
||||||
&dropbear_prng_import,
|
dropbear_prng_import,
|
||||||
&dropbear_prng_test
|
dropbear_prng_test
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user