From e238d2a8da3c09a9e4a425ed291afaddb779a108 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Wed, 7 Mar 2001 05:12:14 +0000 Subject: [PATCH] Don't remember an EINTR, since the caller may want to restart the call. --- lib/libfetch/ftp.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/libfetch/ftp.c b/lib/libfetch/ftp.c index 713a85658e4..02b8f7398ac 100644 --- a/lib/libfetch/ftp.c +++ b/lib/libfetch/ftp.c @@ -348,7 +348,8 @@ _ftp_readfn(void *v, char *buf, int len) io->eof = 1; return _ftp_closefn(v); } - io->err = errno; + if (errno != EINTR) + io->err = errno; return -1; } @@ -374,7 +375,8 @@ _ftp_writefn(void *v, const char *buf, int len) w = write(io->dsd, buf, len); if (w >= 0) return w; - io->err = errno; + if (errno != EINTR) + io->err = errno; return -1; }