From 1d8ab271d50d375731dd34421516ec340a8d1ac1 Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Mon, 25 May 2020 14:40:47 -0500 Subject: [PATCH] base: Default homedir access to !issuid() --- lib/base/context.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/base/context.c b/lib/base/context.c index c16bc1014..3f6bc7bdf 100644 --- a/lib/base/context.c +++ b/lib/base/context.c @@ -44,6 +44,7 @@ heim_context_init(void) if ((context = calloc(1, sizeof(*context))) == NULL) return NULL; + context->homedir_access = !issuid(); context->log_utc = 1; context->error_string = NULL; context->debug_dest = NULL;