summaryrefslogtreecommitdiff
path: root/src/basic/crypt-util.c
blob: 01a4f24a47b332b53305154067a0b502a10974b5 (plain)
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