summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/global.c1
-rw-r--r--src/cli.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/global.c b/lib/global.c
index 1b372c15bd..3d59951422 100644
--- a/lib/global.c
+++ b/lib/global.c
@@ -551,6 +551,7 @@ static const struct gnutls_library_config_st _gnutls_library_config[] = {
{ "libgmp-soname", GMP_LIBRARY_SONAME },
{ "hardware-features", HW_FEATURES },
{ "tls-features", TLS_FEATURES },
+ { "default-system-config", SYSTEM_PRIORITY_FILE },
{ NULL, NULL }
};
diff --git a/src/cli.c b/src/cli.c
index fb7f957b48..7c031f1ec3 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -1654,6 +1654,7 @@ static void cmd_parser(int argc, char **argv)
for (p = gnutls_get_library_config(); p->name; p++) {
log_msg(stdout, "%s: %s\n", p->name, p->value);
}
+ log_msg(stdout, "system-config: %s\n", gnutls_get_system_config_file());
exit(0);
}