[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <13506.1493301433@warthog.procyon.org.uk>
Date: Thu, 27 Apr 2017 14:57:13 +0100
From: David Howells <dhowells@...hat.com>
To: Mehmet Kayaalp <mkayaalp@...ux.vnet.ibm.com>
Cc: dhowells@...hat.com, David Woodhouse <dwmw2@...radead.org>,
keyrings <keyrings@...r.kernel.org>,
LSM <linux-security-module@...r.kernel.org>,
kernel <linux-kernel@...r.kernel.org>,
Mimi Zohar <zohar@...ux.vnet.ibm.com>,
Stefan Berger <stefanb@...ux.vnet.ibm.com>,
George Wilson <gcwilson@...ibm.com>
Subject: Re: [PATCH v4 4/4] KEYS: Print insert-sys-cert information to stdout instead of stderr
Mehmet Kayaalp <mkayaalp@...ux.vnet.ibm.com> wrote:
> +#define info(format, args...) fprintf(stdout, "INFO: " format, ## args)
Btw, you really ought to be using standard varargs macros:
#define info(format, ...) fprintf(stdout, "INFO: " format, ##__VA_LIST__)
But don't worry about that for now.
David
Powered by blists - more mailing lists