From 34a06b07b0b568a48ceae2ed45f0227520c91bc1 Mon Sep 17 00:00:00 2001 From: hniksic Date: Sat, 8 Nov 2003 11:29:36 -0800 Subject: [PATCH] [svn] Doc fix. --- src/retr.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/retr.c b/src/retr.c index 4d03fd4e..e177f7a5 100644 --- a/src/retr.c +++ b/src/retr.c @@ -233,13 +233,12 @@ get_contents (int fd, FILE *fp, long *len, long restval, long expected, waittm = (wtimer_read (timer) - last_successful_read_tm) / 1000; if (waittm + tmout > opt.read_timeout) { - /* Don't allow waiting for data to exceed read timeout. */ + /* Don't allow waiting time to exceed read timeout. */ tmout = opt.read_timeout - waittm; if (tmout < 0) { /* We've already exceeded the timeout. */ - res = -1; - errno = ETIMEDOUT; + res = -1, errno = ETIMEDOUT; break; } } -- 2.39.2