summaryrefslogtreecommitdiff
path: root/src/basic/crypt-util.c
blob: b181ba3ba027afc025edc5a30c0ee493574eb558 (plain)
1
2
3
4
5
6
7
8
9
10
/* 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