Signed-off-by: Michael Haggerty <mhagger@xxxxxxxxxxxx> --- vcs-svn/line_buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcs-svn/line_buffer.c b/vcs-svn/line_buffer.c index 57cc1ce..10791cf 100644 --- a/vcs-svn/line_buffer.c +++ b/vcs-svn/line_buffer.c @@ -19,7 +19,7 @@ int buffer_init(struct line_buffer *buf, const char *filename) int buffer_fdinit(struct line_buffer *buf, int fd) { - buf->infile = fdopen(fd, "r"); + buf->infile = fdopen_with_retry(fd, "r"); if (!buf->infile) return -1; return 0; -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html