mirror of
https://github.com/systemd/systemd.git
synced 2024-11-23 10:13:34 +08:00
eddecf4f6c
Follow-up for c01a5c0
.
14 lines
280 B
Plaintext
14 lines
280 B
Plaintext
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
@@
|
|
expression p, s;
|
|
@@
|
|
- siphash24_compress(&p, sizeof(p), s);
|
|
+ siphash24_compress_typesafe(p, s);
|
|
|
|
@@
|
|
union in_addr_union p;
|
|
expression f, s;
|
|
@@
|
|
- siphash24_compress(&p, FAMILY_ADDRESS_SIZE(f), s);
|
|
+ in_addr_hash_func(&p, f, s);
|