# HG changeset patch # User Carl Byington # Date 1237083917 25200 # Node ID 6cb85306e28abdb991e64cc7c96614400f16a835 # Parent 3418238889abf0cd834175586b9a1ddf6730f991 fix fedora 11 type mismatch warning (actually an error in this case) diff -r 3418238889ab -r 6cb85306e28a ChangeLog --- a/ChangeLog Sat Mar 14 18:44:00 2009 -0700 +++ b/ChangeLog Sat Mar 14 19:25:17 2009 -0700 @@ -1,3 +1,8 @@ +LibPST 0.6.33 (2009-xx-xx) +=============================== + + * fix fedora 11 type mismatch warning (actually an error in this case). + LibPST 0.6.32 (2009-03-14) =============================== diff -r 3418238889ab -r 6cb85306e28a configure.in --- a/configure.in Sat Mar 14 18:44:00 2009 -0700 +++ b/configure.in Sat Mar 14 19:25:17 2009 -0700 @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT(libpst,0.6.32,carl@five-ten-sg.com) +AC_INIT(libpst,0.6.33,carl@five-ten-sg.com) AC_CONFIG_SRCDIR([src/libpst.c]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE diff -r 3418238889ab -r 6cb85306e28a src/pst2dii.cpp.in --- a/src/pst2dii.cpp.in Sat Mar 14 18:44:00 2009 -0700 +++ b/src/pst2dii.cpp.in Sat Mar 14 19:25:17 2009 -0700 @@ -613,7 +613,7 @@ if (item) { if (item->folder && d_ptr->child ) { //if this is a non-empty folder, we want to recurse into it - fprintf(stderr, "entering folder %s\n", item->file_as); + fprintf(stderr, "entering folder %s\n", item->file_as.str); process(item, &ff, d_ptr->child); } else if (item->email && (item->type == PST_TYPE_NOTE || item->type == PST_TYPE_REPORT || item->type == PST_TYPE_OTHER)) { ff.email_count++;