From eb0c61e4812ab19973df9b588f06c9d50a2d038c Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 3 Jul 1996 12:45:18 +0000 Subject: Got rid of line limit member. svn path=/trunk/; revision=31 --- pop3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pop3.c') diff --git a/pop3.c b/pop3.c index a0241c6f..fccf1e73 100644 --- a/pop3.c +++ b/pop3.c @@ -157,8 +157,8 @@ struct optrec *options; if (options->flush && number < first && !options->fetchall) ok = 0; /* no command to send here, will delete message below */ - else if (options->limit) - ok = POP3_sendTOP(number,options->limit,socket); + else if (linelimit) + ok = POP3_sendTOP(number,linelimit,socket); else ok = POP3_sendRETR(number,socket); if (ok != 0) -- cgit v1.2.3