commit f53f5e5fe13af9ae5b55eda34635e61a5c11b538 from: Omar Polo date: Thu Apr 04 11:22:06 2024 UTC fix config dumping (-nn) handling with the privsep rework the config dumping was unadvertitely broken, it prints the content of the key itself. commit - 40ea7b163e15d70788aa7a8189f9000109a7b931 commit + f53f5e5fe13af9ae5b55eda34635e61a5c11b538 blob - bf1aedc445729efc7280e5617f6520e54ac2f815 blob + 408b18425228d2bd3e1c071eca701c06630a59c8 --- gmid.c +++ gmid.c @@ -605,8 +605,8 @@ main_print_conf(struct conf *conf) TAILQ_FOREACH(h, &conf->hosts, vhosts) { printf("\nserver \"%s\" {\n", h->domain); - printf(" cert \"%s\"\n", h->cert); - printf(" key \"%s\"\n", h->key); + printf(" cert \"%s\"\n", h->cert_path); + printf(" key \"%s\"\n", h->key_path); /* TODO: print locations... */ printf("}\n"); }