Commit 9c5a3d47 9c5a3d47e072d74af7e4b2a82c09277245638e24 by Alain Magloire

New parser from Sam.

1 parent c6d08dd1
...@@ -38,7 +38,7 @@ extern "C" { ...@@ -38,7 +38,7 @@ extern "C" {
38 38
39 /* 39 /*
40 * The data-structure representing an RFC822 MAILBOX. It may be 40 * The data-structure representing an RFC822 MAILBOX. It may be
41 * one MAILBOX in a list of them, as found in an ADDRESS list or 41 * one MAILBOX or a list of them, as found in an ADDRESS or
42 * a MAILBOX list (as found in a GROUP). 42 * a MAILBOX list (as found in a GROUP).
43 * 43 *
44 * Capitalized names are from RFC 822, section 6.1 (Address Syntax). 44 * Capitalized names are from RFC 822, section 6.1 (Address Syntax).
...@@ -62,7 +62,8 @@ struct _address ...@@ -62,7 +62,8 @@ struct _address
62 char *route; 62 char *route;
63 /* the optional ROUTE in the ROUTE-ADDR form of MAILBOX */ 63 /* the optional ROUTE in the ROUTE-ADDR form of MAILBOX */
64 64
65 // size_t num; -- didn't appear to be used anywhere... 65 /* size_t num; this didn't appear to be used anywhere... so I commented
66 it out, is that ok? -sam */
66 67
67 struct _address *next; 68 struct _address *next;
68 }; 69 };
......