[PATCH v4 4/4] KEYS: Print insert-sys-cert information to stdout instead of stderr
David Howells
dhowells at redhat.com
Thu Apr 27 13:57:13 UTC 2017
Mehmet Kayaalp <mkayaalp at linux.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
--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
More information about the Linux-security-module-archive
mailing list