comparison src/pst2dii.cpp.in @ 69:63c02a242ca9

minor code cleanup
author Carl Byington <carl@five-ten-sg.com>
date Sat, 10 May 2008 12:45:23 -0700
parents 90aa7814ad1f
children 3cb02cb1e6cd
comparison
equal deleted inserted replaced
68:0616a2ee9c48 69:63c02a242ca9
624 // there should only be one message_store, and we have already done it 624 // there should only be one message_store, and we have already done it
625 DIE(("main: A second message_store has been found. Sorry, this must be an error.\n")); 625 DIE(("main: A second message_store has been found. Sorry, this must be an error.\n"));
626 } 626 }
627 627
628 if (item->folder && d_ptr->child ) { 628 if (item->folder && d_ptr->child ) {
629 //if this is a non-empty folder other than deleted items, we want to recurse into it 629 //if this is a non-empty folder, we want to recurse into it
630 fprintf(stderr, "entering folder %s\n", item->file_as); 630 fprintf(stderr, "entering folder %s\n", item->file_as);
631 process(item, &ff, d_ptr->child); 631 process(item, &ff, d_ptr->child);
632 } else if (item->email && (item->type == PST_TYPE_NOTE || item->type == PST_TYPE_REPORT)) { 632 } else if (item->email && (item->type == PST_TYPE_NOTE || item->type == PST_TYPE_REPORT)) {
633 ff.email_count++; 633 ff.email_count++;
634 DEBUG_MAIN(("main: Processing Email\n")); 634 DEBUG_MAIN(("main: Processing Email\n"));