diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-07-03 12:45:18 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-07-03 12:45:18 +0000 |
commit | eb0c61e4812ab19973df9b588f06c9d50a2d038c (patch) | |
tree | f15c47e03f5e00823c2b1faa19d03ef2b2706e06 /pop3.c | |
parent | 3e22607c5ba702824afd838132591123ae6ad9c3 (diff) | |
download | fetchmail-eb0c61e4812ab19973df9b588f06c9d50a2d038c.tar.gz fetchmail-eb0c61e4812ab19973df9b588f06c9d50a2d038c.tar.bz2 fetchmail-eb0c61e4812ab19973df9b588f06c9d50a2d038c.zip |
Got rid of line limit member.
svn path=/trunk/; revision=31
Diffstat (limited to 'pop3.c')
-rw-r--r-- | pop3.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |