Mercurial > libpst
comparison src/libpst.c @ 168:c1a2fd06ffe6 stable-0-6-34
prep for fedora build
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 19 Mar 2009 16:32:17 -0700 |
parents | 40e9de445038 |
children | 0e1e048716e4 |
comparison
equal
deleted
inserted
replaced
167:40e9de445038 | 168:c1a2fd06ffe6 |
---|---|
2036 case 0x0017: // PR_IMPORTANCE - How important the sender deems it to be | 2036 case 0x0017: // PR_IMPORTANCE - How important the sender deems it to be |
2037 LIST_COPY_EMAIL_ENUM("Importance Level", item->email->importance, 0, 3, "Low", "Normal", "High"); | 2037 LIST_COPY_EMAIL_ENUM("Importance Level", item->email->importance, 0, 3, "Low", "Normal", "High"); |
2038 break; | 2038 break; |
2039 case 0x001A: // PR_MESSAGE_CLASS IPM.x | 2039 case 0x001A: // PR_MESSAGE_CLASS IPM.x |
2040 if ((list->elements[x]->type == 0x1e) || | 2040 if ((list->elements[x]->type == 0x1e) || |
2041 (list->elements[x]->type == 0x1e)) { | 2041 (list->elements[x]->type == 0x1f)) { |
2042 LIST_COPY_CSTR(item->ascii_type); | 2042 LIST_COPY_CSTR(item->ascii_type); |
2043 if (!item->ascii_type) item->ascii_type = strdup("unknown"); | 2043 if (!item->ascii_type) item->ascii_type = strdup("unknown"); |
2044 if (pst_strincmp("IPM.Note", item->ascii_type, 8) == 0) | 2044 if (pst_strincmp("IPM.Note", item->ascii_type, 8) == 0) |
2045 item->type = PST_TYPE_NOTE; | 2045 item->type = PST_TYPE_NOTE; |
2046 else if (pst_stricmp("IPM", item->ascii_type) == 0) | 2046 else if (pst_stricmp("IPM", item->ascii_type) == 0) |