changeset 162:6cb85306e28a

fix fedora 11 type mismatch warning (actually an error in this case)
author Carl Byington <carl@five-ten-sg.com>
date Sat, 14 Mar 2009 19:25:17 -0700
parents 3418238889ab
children 03fbb0269f3c
files ChangeLog configure.in src/pst2dii.cpp.in
diffstat 3 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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)
 ===============================
 
--- 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
--- 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++;