diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-10-05 14:21:57 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-10-05 16:14:37 +0200 |
commit | d8e32c471f6a52407184e421243b174f7480d180 (patch) | |
tree | 85e0209b3aa100e84b37be3c3a28c18583711ab1 /src/home/homectl-recovery-key.c | |
parent | basic: split out sync() family of calls from fs-util.[ch] into new c/h file (diff) | |
download | systemd-d8e32c471f6a52407184e421243b174f7480d180.tar.xz systemd-d8e32c471f6a52407184e421243b174f7480d180.zip |
basic: split out glyph/emoji related calls from locale-util.[ch] into glyph-util.[ch]
These functions are used pretty much independently of locale, i.e. the
only info relevant is whether th locale is UTF-8 or not. Hence let's
give this its own pair of .c/.h files.
Diffstat (limited to 'src/home/homectl-recovery-key.c')
-rw-r--r-- | src/home/homectl-recovery-key.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/home/homectl-recovery-key.c b/src/home/homectl-recovery-key.c index f1a180baca..da1899ae14 100644 --- a/src/home/homectl-recovery-key.c +++ b/src/home/homectl-recovery-key.c @@ -1,9 +1,9 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ #include "errno-util.h" +#include "glyph-util.h" #include "homectl-recovery-key.h" #include "libcrypt-util.h" -#include "locale-util.h" #include "memory-util.h" #include "qrcode-util.h" #include "random-util.h" |