]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/crypt-util.c
Merge pull request #8417 from brauner/2018-03-09/add_bind_mount_fallback_to_private_d...
[thirdparty/systemd.git] / src / basic / crypt-util.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2017 Zbigniew Jędrzejewski-Szmek
5 ***/
6
7 #if HAVE_LIBCRYPTSETUP
8 #include "crypt-util.h"
9 #include "log.h"
10
11 void cryptsetup_log_glue(int level, const char *msg, void *usrptr) {
12 log_debug("%s", msg);
13 }
14 #endif