]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/crypt-util.c
tree-wide: beautify remaining copyright statements
[thirdparty/systemd.git] / src / basic / crypt-util.c
1 /***
2 Copyright © 2017 Zbigniew Jędrzejewski-Szmek
3 ***/
4
5 #if HAVE_LIBCRYPTSETUP
6 #include "crypt-util.h"
7 #include "log.h"
8
9 void cryptsetup_log_glue(int level, const char *msg, void *usrptr) {
10 log_debug("%s", msg);
11 }
12 #endif