diff src/lspst.c @ 195:320cfcba8058

add python module interface to the shared library for easy scripting. the shared library must never write to stdout or stderr. fix pst_attach_to_mem so the caller does not need to initialize the buffer pointer.
author Carl Byington <carl@five-ten-sg.com>
date Mon, 20 Apr 2009 19:39:26 -0700
parents 0a4f7ecd7452
children 7c60d6d1c681
line wrap: on
line diff
--- a/src/lspst.c	Fri Apr 17 13:08:31 2009 -0700
+++ b/src/lspst.c	Mon Apr 20 19:39:26 2009 -0700
@@ -234,11 +234,9 @@
         item->file_as.str = strdup(temp);
         item->file_as.is_utf8 = 1;
     }
-    WARN(("item->file_as = '%s'.\n", item->file_as.str));
 
     d_ptr = pst_getTopOfFolders(&pstfile, item);
     if (!d_ptr) DIE(("Top of folders record not found. Cannot continue\n"));
-    DEBUG_MAIN(("d_ptr(TOF) = %p.\n", d_ptr));
 
     process(item, d_ptr->child);    // do the childred of TOPF
     pst_freeItem(item);