Thread (5 messages) 5 messages, 2 authors, 2024-02-27
STALE860d
Revisions (2)
  1. v1 [diff vs current]
  2. v2 current

[PATCH v2 2/3] builtin/receive-pack.c: change xwrite to write_in_full.

From: Randall S. Becker <hidden>
Date: 2024-02-27 15:10:00
Subsystem: the rest · Maintainer: Linus Torvalds

From: "Randall S. Becker" <redacted>

This change is required because some platforms do not support file writes of    arbitrary sizes (e.g, NonStop). xwrite ends up truncating the output to the
maximum single I/O size possible for the destination device.

Signed-off-by: Randall S. Becker <redacted>
---
 builtin/receive-pack.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c
index db65607485..4277c63d08 100644
--- a/builtin/receive-pack.c
+++ b/builtin/receive-pack.c
@@ -456,7 +456,7 @@ static void report_message(const char *prefix, const char *err, va_list params)
 	if (use_sideband)
 		send_sideband(1, 2, msg, sz, use_sideband);
 	else
-		xwrite(2, msg, sz);
+		write_in_full(2, msg, sz);
 }
 
 __attribute__((format (printf, 1, 2)))
-- 
2.42.1
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help