Re: [PATCH v4 4/4] KEYS: Print insert-sys-cert information to stdout instead of stderr

2017-04-27 Thread David Howells
Mehmet Kayaalp 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

[PATCH v4 4/4] KEYS: Print insert-sys-cert information to stdout instead of stderr

2017-04-20 Thread Mehmet Kayaalp
Detailed INFO output should go to stdout instead of stderr. Signed-off-by: Mehmet Kayaalp --- scripts/insert-sys-cert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/insert-sys-cert.c b/scripts/insert-sys-cert.c index f558616..56c5482 100644 --- a/scripts/insert-sys