From b882827b9725f849d84c6bfa978d91d8624f9e0f Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Wed, 20 Apr 2022 19:43:29 +0200 Subject: [PATCH] Add socket info to show configuration --- src/options.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/options.c b/src/options.c index f5a5f5d..f91e133 100644 --- a/src/options.c +++ b/src/options.c @@ -149,6 +149,8 @@ void options_print() tio_printf(" Map flags: %s", option.map); if (option.log) tio_printf(" Log file: %s", option.log_filename); + if (option.socket) + tio_printf(" Socket: %s", option.socket); } void options_parse(int argc, char *argv[])