Systemd/src/basic/crypt-util.c

11 lines
215 B
C
Raw Normal View History

2018-06-14 12:50:49 +02:00
/* SPDX-License-Identifier: LGPL-2.1+ */
#if HAVE_LIBCRYPTSETUP
#include "crypt-util.h"
#include "log.h"
void cryptsetup_log_glue(int level, const char *msg, void *usrptr) {
log_debug("%s", msg);
}
#endif