Commit de632534 de632534b0552700c8c9dac4fcbfa8549466f5da by Alain Magloire

Patch from Sergey.

1 parent c4720131
...@@ -5,4 +5,6 @@ Dave Inglis <dinglis@qnx.com> ...@@ -5,4 +5,6 @@ Dave Inglis <dinglis@qnx.com>
5 Jakob Kaivo <jkaivo@ndn.net> 5 Jakob Kaivo <jkaivo@ndn.net>
6 Jeff Bailey <jbailey@gnu.org> 6 Jeff Bailey <jbailey@gnu.org>
7 Sean 'Shaleh' Perry <shaleh@debian.org> 7 Sean 'Shaleh' Perry <shaleh@debian.org>
8 Sergey Poznyakoff <gray@Mirddin.farlep.net>
9 Sam Roberts <sroberts@uniserve.com>
8 10
......
1 2001-05-19 Alain Magloire
2
3 * AUTHORS: Update to reflect Sergey and Sam contributions.
4
5 2001-05-20 Sergey Poznyakoff
6
7 * mailbox/mbx_mboxscan.c:* Bug in mailbox/mbx_mboxscan.c made the
8 stuff coredump upon encountering more than one subject in the header.
9
10 * pop3d/pop3d.c: Typo.
11
1 2001-05-19 Sam Roberts 12 2001-05-19 Sam Roberts
2 13
3 * mailbox/parse822.c: parse822 is a little smarter in the way 14 * mailbox/parse822.c: parse822 is a little smarter in the way
......
...@@ -711,8 +711,6 @@ mbox_scan0 (mailbox_t mailbox, size_t msgno, size_t *pcount, int do_notif) ...@@ -711,8 +711,6 @@ mbox_scan0 (mailbox_t mailbox, size_t msgno, size_t *pcount, int do_notif)
711 } 711 }
712 else if (ISSUBJECT(buf)) 712 else if (ISSUBJECT(buf))
713 { 713 {
714 char *ss = NULL;
715 if (mum->fhdr[H_SUBJECT]) *ss = 1;
716 FAST_H_SUBJECT (mum, sfield, buf, n); 714 FAST_H_SUBJECT (mum, sfield, buf, n);
717 } 715 }
718 else if (ISTO(buf)) 716 else if (ISTO(buf))
......
...@@ -233,7 +233,7 @@ pop3d_mainloop (int infile, int outfile) ...@@ -233,7 +233,7 @@ pop3d_mainloop (int infile, int outfile)
233 233
234 ifile = fdopen (infile, "r"); 234 ifile = fdopen (infile, "r");
235 ofile = fdopen (outfile, "w"); 235 ofile = fdopen (outfile, "w");
236 if (!ofile || !ofile) 236 if (!ifile || !ofile)
237 pop3d_abquit (ERR_NO_OFILE); 237 pop3d_abquit (ERR_NO_OFILE);
238 238
239 state = AUTHORIZATION; 239 state = AUTHORIZATION;
......