(MsgInfoList): replace del_flag' and retr_flag' with single `flags'

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4793 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1998-04-23 17:36:45 +00:00
parent d55a7ef597
commit 7c574184f0

View File

@@ -189,6 +189,9 @@ typedef enum { /* POP processing states */
} state; } state;
#define DEL_FLAG 1
#define RETR_FLAG 2
typedef struct { /* Message information */ typedef struct { /* Message information */
int number; /* Message number relative to int number; /* Message number relative to
the beginning of list */ the beginning of list */
@@ -197,10 +200,8 @@ typedef struct { /* Message information */
int lines; /* Number of (null-terminated) lines in the message */ int lines; /* Number of (null-terminated) lines in the message */
long offset; /* Offset from beginning of long offset; /* Offset from beginning of
file */ file */
int del_flag; /* Flag indicating if message unsigned flags;
is marked for deletion */
int retr_flag; /* Flag indicating if message
was retrieved */
#if defined(UIDL) || defined(XOVER) #if defined(UIDL) || defined(XOVER)
char *msg_id; /* The POP UIDL uniqueifier */ char *msg_id; /* The POP UIDL uniqueifier */
#endif #endif