Commit 935e23c5 935e23c569a2e0b799c56ab36fbfcd4b1058af4e by Alain Magloire

mailutils/Makefile.am mailutils/sys/pop3.h

Remove offset field and use stream_sequential_readline().

 	mailutils/sys/Makefile.am
New files sys/pop3d.h should be install.
1 parent 3cb1b909
......@@ -49,6 +49,7 @@ pkginclude_HEADERS = \
nls.h \
observer.h \
parse822.h \
pop3.h \
property.h \
registrar.h \
stream.h \
......@@ -56,4 +57,4 @@ pkginclude_HEADERS = \
types.h \
url.h
SUBDIRS = gnu
SUBDIRS = gnu sys
......
## Process this file with GNU Automake to create Makefile.in
## Copyright (C) 2002 Free Software Foundation, Inc.
##
## GNU Mailutils is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2, or (at
## your option) any later version.
##
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc.
## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
pkginclude_HEADERS = \
pop3.h
......@@ -59,7 +59,6 @@ struct mu_pop3_work_buf
char *ptr;
char *nl;
size_t len;
off_t offset; /* To synchronize with the stream buffering. */
};
/* Structure to hold things general to POP3 mailbox, like its state, etc ... */
......