[Squash PATCH] fprintf(stderr, "Warning...") -> warning("...")

Subsystems: the rest

DORMANTno replies

2 messages, 2 authors, 2016-06-15 · open the first message on its own page

[Squash PATCH] fprintf(stderr, "Warning...") -> warning("...")

From: Ilari Liusvaara <hidden>
Date: 2016-06-15 22:47:56

Signed-off-by: Ilari Liusvaara <redacted>
---
 transport-helper.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

This fixes the small nit about fprintf(stderr, "Warning: ") by using
warning() API. 

It can be appiled on top of "Support remote helpers implementing smart
transports" or squashed to it.
diff --git a/transport-helper.c b/transport-helper.c
index 55427df..8c8ca8e 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -420,11 +420,10 @@ static int process_connect_service(struct transport *transport,
 	if (strcmp(name, exec)) {
 		r = set_helper_option(transport, "servpath", exec);
 		if (r > 0)
-			fprintf(stderr, "Warning: Setting remote service path "
-				"not supported by protocol.\n");
+			warning("Setting remote service path not supported "
+				"by protocol.\n");
 		else if (r < 0)
-			fprintf(stderr, "Warning: Invalid remote service "
-				"path.\n");
+			warning("Invalid remote service path.\n");
 	}
 
 	if (data->connect)
-- 
1.6.6.3.gaa2e1

Re: [Squash PATCH] fprintf(stderr, "Warning...") -> warning("...")

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:47:56

Ilari Liusvaara [off-list ref] writes:
Signed-off-by: Ilari Liusvaara <redacted>
---
 transport-helper.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

This fixes the small nit about fprintf(stderr, "Warning: ") by using
warning() API. 

It can be appiled on top of "Support remote helpers implementing smart
transports" or squashed to it.
Thanks; will squash but with two minor touch-ups:

 - warning() adds its own terminating LF so we need to drop it from the caller;

 - being able to grep for an error/warning message is more important than
   keeping the source line strictly shorter than 80-columns.
quoted hunk
diff --git a/transport-helper.c b/transport-helper.c
index 55427df..8c8ca8e 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -420,11 +420,10 @@ static int process_connect_service(struct transport *transport,
 	if (strcmp(name, exec)) {
 		r = set_helper_option(transport, "servpath", exec);
 		if (r > 0)
-			fprintf(stderr, "Warning: Setting remote service path "
-				"not supported by protocol.\n");
+			warning("Setting remote service path not supported "
+				"by protocol.\n");
 		else if (r < 0)
-			fprintf(stderr, "Warning: Invalid remote service "
-				"path.\n");
+			warning("Invalid remote service path.\n");
 	}
 
 	if (data->connect)
-- 
1.6.6.3.gaa2e1
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help