diff src/libpst.c @ 215:fef2214083a4 stable-0-6-38

ready for new release
author Carl Byington <carl@five-ten-sg.com>
date Sun, 21 Jun 2009 15:06:37 -0700
parents 94bde95d7e18
children 42b38d65f7e4
line wrap: on
line diff
--- a/src/libpst.c	Wed Jun 17 22:11:12 2009 -0700
+++ b/src/libpst.c	Sun Jun 21 15:06:37 2009 -0700
@@ -275,7 +275,6 @@
 static uint64_t         pst_getIntAtPos(pst_file *pf, int64_t pos);
 static pst_mapi_object* pst_parse_block(pst_file *pf, uint64_t block_id, pst_id2_tree *i2_head);
 static void             pst_printDptr(pst_file *pf, pst_desc_tree *ptr);
-static void             pst_printIDptr(pst_file* pf);
 static void             pst_printID2ptr(pst_id2_tree *ptr);
 static int              pst_process(pst_mapi_object *list, pst_item *item, pst_item_attach *attach);
 static size_t           pst_read_block_size(pst_file *pf, int64_t offset, size_t size, char **buf);
@@ -3680,17 +3679,6 @@
 }
 
 
-static void pst_printIDptr(pst_file* pf) {
-    pst_index_ll *ptr = pf->i_head;
-    DEBUG_ENT("pst_printIDptr");
-    while (ptr) {
-        DEBUG_INFO(("%#"PRIx64" offset=%#"PRIx64" size=%#"PRIx64"\n", ptr->i_id, ptr->offset, ptr->size));
-        ptr = ptr->next;
-    }
-    DEBUG_RET();
-}
-
-
 static void pst_printID2ptr(pst_id2_tree *ptr) {
     DEBUG_ENT("pst_printID2ptr");
     while (ptr) {