Author: hp
Date: 2002-10-11 20:40:38 GMT
2002-10-11 Havoc Pennington <hp@redhat.com>
* pkg.c (verify_package): fix to properly cast iter->data to char*
before doing pointer arithmetic, from David Robins
+2002-10-11 Havoc Pennington <hp@redhat.com>
+
+ * pkg.c (verify_package): fix to properly cast iter->data to char*
+ before doing pointer arithmetic, from David Robins
+
2002-10-10 Havoc Pennington <hp@redhat.com>
* configure.in: 0.14
system_dir_iter = system_directories;
while (system_dir_iter != NULL)
{
- if (strcmp (system_dir_iter->data, iter->data + offset) == 0)
+ if (strcmp (system_dir_iter->data,
+ ((char*)iter->data) + offset) == 0)
{
debug_spew ("Package %s has %s in Cflags\n",
pkg->name, (gchar *)iter->data);