From 32b2502a9dfdfded1ccdc1fd6dc2b3fe41bfc205 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Fri, 26 Jun 2020 15:30:06 +1000 Subject: [PATCH] missing ifdef SELINUX; spotted by dtucker --- hostfile.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hostfile.c b/hostfile.c index 4b39def04..1cc4dba92 100644 --- a/hostfile.c +++ b/hostfile.c @@ -471,13 +471,17 @@ hostfile_create_user_ssh_dir(const char *filename, int notify) else if (errno != ENOENT) error("Could not stat %s: %s", dotsshdir, strerror(errno)); else { +#ifdef WITH_SELINUX ssh_selinux_setfscreatecon(dotsshdir); +#endif if (mkdir(dotsshdir, 0700) == -1) error("Could not create directory '%.200s' (%s).", dotsshdir, strerror(errno)); else if (notify) logit("Created directory '%s'.", dotsshdir); +#ifdef WITH_SELINUX ssh_selinux_setfscreatecon(NULL); +#endif } free(dotsshdir); } -- 2.47.3