]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/crypt-util.c
b181ba3ba027afc025edc5a30c0ee493574eb558
[thirdparty/systemd.git] / src / basic / crypt-util.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #if HAVE_LIBCRYPTSETUP
4 #include "crypt-util.h"
5 #include "log.h"
6
7 void cryptsetup_log_glue(int level, const char *msg, void *usrptr) {
8 log_debug("%s", msg);
9 }
10 #endif