comparison src/lspst.c @ 150:06aa84023b48

rename some structure fields to reflect our better understanding of the pst format
author Carl Byington <carl@five-ten-sg.com>
date Thu, 05 Mar 2009 08:23:32 -0800
parents fdc58ad2c758
children cda7c812ec01
comparison
equal deleted inserted replaced
149:f9773b6368e0 150:06aa84023b48
51 DEBUG_ENT("process"); 51 DEBUG_ENT("process");
52 memset(&ff, 0, sizeof(ff)); 52 memset(&ff, 0, sizeof(ff));
53 create_enter_dir(&ff, outeritem); 53 create_enter_dir(&ff, outeritem);
54 54
55 while (d_ptr) { 55 while (d_ptr) {
56 DEBUG_MAIN(("main: New item record, d_ptr = %p.\n", d_ptr));
57 if (!d_ptr->desc) { 56 if (!d_ptr->desc) {
58 DEBUG_WARN(("main: ERROR ?? item's desc record is NULL\n")); 57 DEBUG_WARN(("main: ERROR item's desc record is NULL\n"));
59 ff.skip_count++; 58 ff.skip_count++;
60 } 59 }
61 else { 60 else {
62 DEBUG_MAIN(("main: Desc Email ID %x [d_ptr->id = %x]\n", d_ptr->desc->id, d_ptr->id)); 61 DEBUG_MAIN(("main: Desc Email ID %"PRIx64" [d_ptr->d_id = %"PRIx64"]\n", d_ptr->desc->id, d_ptr->d_id));
63 62
64 item = pst_parse_item(&pstfile, d_ptr, NULL); 63 item = pst_parse_item(&pstfile, d_ptr, NULL);
65 DEBUG_MAIN(("main: About to process item @ %p.\n", item)); 64 DEBUG_MAIN(("main: About to process item @ %p.\n", item));
66 if (item) { 65 if (item) {
67 if (item->message_store) { 66 if (item->message_store) {