From 79952149e8d94375de440960fe74166ef8f12919 Mon Sep 17 00:00:00 2001 From: des Date: Wed, 7 Mar 2001 05:12:14 +0000 Subject: 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(-) (limited to 'lib/libfetch') diff --git a/lib/libfetch/ftp.c b/lib/libfetch/ftp.c index 713a856..02b8f73 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; } -- cgit v1.1