From 5cbe1edcfee429c550744f82f2efb3560a621407 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Thu, 28 Jan 2016 15:36:15 -0700 Subject: [PATCH] iolog_compress should be bool, not int --- plugins/sudoers/iolog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sudoers/iolog.c b/plugins/sudoers/iolog.c index 6b33c195b..adcc05524 100644 --- a/plugins/sudoers/iolog.c +++ b/plugins/sudoers/iolog.c @@ -65,7 +65,7 @@ struct iolog_details { int cols; }; -static int iolog_compress; +static bool iolog_compress = false; static struct timeval last_time; static unsigned int sessid_max = SESSID_MAX; -- 2.50.1