diff options
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-pilot-util.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 96b819ccbf..94b3f4a095 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2004-02-19 Not Zed <NotZed@Ximian.com> + + * e-pilot-util.c: include string.h, fixes 64 bit crash. From + David Mosberger. + 2004-02-03 Chris Toshok <toshok@ximian.com> * e-html-utils.c (e_text_to_html_full): add callto:, h323:, and diff --git a/e-util/e-pilot-util.c b/e-util/e-pilot-util.c index 9e9c13d2c0..7ce6f3cbdc 100644 --- a/e-util/e-pilot-util.c +++ b/e-util/e-pilot-util.c @@ -20,6 +20,7 @@ * Boston, MA 02111-1307, USA. */ +#include <string.h> #include <stdlib.h> #include <time.h> #include <libxml/parser.h> |