taler-mdb

GNU Taler Extensions and Integrations
Log | Files | Refs | Submodules | README | LICENSE

commit 61c69c550c41c639cfca213cb3aa6ac72ea29509
parent 12124f9e0bba128182f284d248ce45a1bf7aeb85
Author: Dominik Hofer <dominik.hofer@bfh.ch>
Date:   Fri,  6 Dec 2019 10:13:20 +0100

fix

Diffstat:
Msrc/main.c | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/main.c b/src/main.c @@ -51,12 +51,14 @@ along with #include <gnunet/gnunet_json_lib.h> #include <taler/taler_json_lib.h> #include <taler/taler_merchant_service.h> -#if HAVE_QRENCODE_H /* for adafruit pitft display */ +#if HAVE_QRENCODE_H + +#endif #include <sys/mman.h> #include <sys/ioctl.h> #include <fcntl.h> +/* for adafruit pitft display */ #include <linux/fb.h> -#endif /* Constants */ #define MAX_SIZE_RX_BUFFER 256 @@ -1873,7 +1875,6 @@ run_mdb_event_loop () { struct GNUNET_DISK_FileHandle fh = { mdb.uartfd }; - return; if ( (GNUNET_NO == mdb.session_running) && (NULL == mdb.cmd) && (NULL == mdb.last_cmd) ) @@ -2000,6 +2001,8 @@ mdb_init () if (disable_mdb) { + GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + "Running with MDB disabled!\n"); run_mdb_event_loop (); return GNUNET_OK; }