Add socket info to show configuration

This commit is contained in:
Martin Lund 2022-04-20 19:43:29 +02:00
parent b0b0856a8b
commit b882827b97

View file

@ -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[])