New parser from Sam.
Showing
2 changed files
with
3 additions
and
2 deletions
... | @@ -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 | }; | ... | ... |
This diff is collapsed.
Click to expand it.
-
Please register or sign in to post a comment