mirror of
https://github.com/systemd/systemd.git
synced 2025-02-07 05:57:46 +03:00
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);
|