Check-in Number:
|
2162 | |
Date: |
2002-May-28 14:21:38 (local)
2002-May-28 12:21:38 (UTC) |
User: | thl |
Branch: | |
Comment: |
a hash could be implemented to enhance performance here |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/lmtp2nntp/lmtp2nntp_msg.c 1.19 -> 1.20
--- lmtp2nntp_msg.c 2002/05/28 12:19:47 1.19
+++ lmtp2nntp_msg.c 2002/05/28 12:21:38 1.20
@@ -794,7 +794,7 @@
while ((cp = argz_next(msg->azHeaders, msg->asHeaders, cp)) != NULL) { /* for each message header */
logbook(msg->l2, L2_LEVEL_DEBUG, "processing message header \"%s\"", cp);
- /*FIXME we want O(1) here */
+ /*TODO we want O(1) here */
for (hdP = NULL, hdI = msg->hdFirst; hdI != NULL; hdP = hdI, hdI = hdI->next) { /* for each matrix header */
if (hdI->name == NULL || strlen(hdI->name) == 0 || hdI->ndata == 0)
continue;
|
|