Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1527215

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

From Mehmet Kayaalp <mkayaalp@linux.vnet.ibm.com>
Newsgroups linux.kernel
Subject [PATCH 4/4] KEYS: Print insert-sys-cert information to stdout instead of stderr
Date 2016-11-22 05:20 +0100
Message-ID <sGaIN-2hj-1@gated-at.bofh.it> (permalink)
References <sGaIN-2hj-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Detailed INFO output should go to stdout instead of stderr.

Signed-off-by: Mehmet Kayaalp <mkayaalp@linux.vnet.ibm.com>
---
 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 3d9018f..0516b2e 100644
--- a/scripts/insert-sys-cert.c
+++ b/scripts/insert-sys-cert.c
@@ -31,7 +31,7 @@
 #define USED_SYM  "system_extra_cert_used"
 #define LSIZE_SYM "system_certificate_list_size"
 
-#define info(format, args...) fprintf(stderr, "INFO:    " format, ## args)
+#define info(format, args...) fprintf(stdout, "INFO:    " format, ## args)
 #define warn(format, args...) fprintf(stdout, "WARNING: " format, ## args)
 #define  err(format, args...) fprintf(stderr, "ERROR:   " format, ## args)
 
-- 
2.7.4

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH 4/4] KEYS: Print insert-sys-cert information to stdout instead of stderr Mehmet Kayaalp <mkayaalp@linux.vnet.ibm.com> - 2016-11-22 05:20 +0100

csiph-web