summaryrefslogtreecommitdiff
path: root/blabouncer.c
diff options
context:
space:
mode:
Diffstat (limited to 'blabouncer.c')
-rw-r--r--blabouncer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/blabouncer.c b/blabouncer.c
index 0e9fda8..45b8648 100644
--- a/blabouncer.c
+++ b/blabouncer.c
@@ -2025,14 +2025,14 @@ int main(int argc, char *argv[]) {
if (settings.clienttls) {
// What is the certificate file path?
if (!getconfstr("certfile", settings.conffile, settings.certfile)) {
- printf("main(): error getting 'certfile' from configuration file.\n");
- exit(1);
+ // If none provided, set to default
+ snprintf(settings.certfile, PATH_MAX, "%s/.blabouncer/cert.pem", getenv("HOME"));
}
// What is the certificate key file path?
if (!getconfstr("keyfile", settings.conffile, settings.keyfile)) {
- printf("main(): error getting 'keyfile' from configuration file.\n");
- exit(1);
+ // If none provided, set to default
+ snprintf(settings.keyfile, PATH_MAX, "%s/.blabouncer/key.pem", getenv("HOME"));
}
}