1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*** This file is part of systemd. Copyright 2017 Zbigniew Jędrzejewski-Szmek ***/ #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