From 9116efe1c387ea7f177a4034cfcf3ba78b5ca6e4 Mon Sep 17 00:00:00 2001 From: dtucker Date: Sun, 6 Feb 2011 02:24:35 +0000 Subject: [PATCH] - (dtucker) [openbsd-compat/port-linux.c] Bug #1851: fix syntax error in selinux code. Patch from Leonardo Chiquitto. --- ChangeLog | 4 ++++ openbsd-compat/port-linux.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9a404558..5af606b4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +20110206 + - (dtucker) [openbsd-compat/port-linux.c] Bug #1851: fix syntax error in + selinux code. Patch from Leonardo Chiquitto + 20110204 - OpenBSD CVS Sync - djm@cvs.openbsd.org 2011/01/31 21:42:15 diff --git a/openbsd-compat/port-linux.c b/openbsd-compat/port-linux.c index eb280e61..ac1e4fef 100644 --- a/openbsd-compat/port-linux.c +++ b/openbsd-compat/port-linux.c @@ -1,4 +1,4 @@ -/* $Id: port-linux.c,v 1.13 2011/01/27 23:30:20 djm Exp $ */ +/* $Id: port-linux.c,v 1.14 2011/02/06 02:24:35 dtucker Exp $ */ /* * Copyright (c) 2005 Daniel Walsh @@ -213,7 +213,7 @@ ssh_selinux_setfscreatecon(const char *path) if (!ssh_selinux_enabled()) return; - if (path == NULL) + if (path == NULL) { setfscreatecon(NULL); return; } -- 2.11.4.GIT