Thread (1 message) 1 message, 1 author, 2020-06-19

Re: [Patch v1 2/3] strbuf.c: remove unreferenced strbuf_write_fd method.

From: Junio C Hamano <hidden>
Date: 2020-06-19 19:31:03

randall.s.becker@rogers.com writes:
From: "Randall S. Becker" <redacted>

strbuf_write_fd was only used in bugreport.c. Since that file now uses
write_in_full, this method is no longer needed.
Yay!

quoted hunk
Signed-off-by: Randall S. Becker <redacted>
---
 strbuf.c | 5 -----
 1 file changed, 5 deletions(-)
diff --git a/strbuf.c b/strbuf.c
index 2f1a7d3209..e3397cc4c7 100644
--- a/strbuf.c
+++ b/strbuf.c
@@ -556,11 +556,6 @@ ssize_t strbuf_write(struct strbuf *sb, FILE *f)
 	return sb->len ? fwrite(sb->buf, 1, sb->len, f) : 0;
 }
 
-ssize_t strbuf_write_fd(struct strbuf *sb, int fd)
-{
-	return sb->len ? write(fd, sb->buf, sb->len) : 0;
-}
-
 #define STRBUF_MAXLINK (2*PATH_MAX)
 
 int strbuf_readlink(struct strbuf *sb, const char *path, size_t hint)
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help