diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/itdb_device.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-11-08 Christophe Fergeau <christophe@anevia.com> + + * src/itdb_device.c: (itdb_device_requires_checksum): the iPod Touch + needs a firewire id as well + 2007-11-08 Christophe Fergeau <teuf@gnome.org> * tools/hal-callout.c: (mount_ipod): use g_get_tmp_dir instead of diff --git a/src/itdb_device.c b/src/itdb_device.c index caaea58..0f8c90a 100644 --- a/src/itdb_device.c +++ b/src/itdb_device.c @@ -1074,6 +1074,7 @@ G_GNUC_INTERNAL gboolean itdb_device_requires_checksum (Itdb_Device *device) switch (info->ipod_generation) { case ITDB_IPOD_GENERATION_CLASSIC_1: case ITDB_IPOD_GENERATION_NANO_3: + case ITDB_IPOD_GENERATION_TOUCH_1: return TRUE; case ITDB_IPOD_GENERATION_UNKNOWN: @@ -1092,7 +1093,6 @@ G_GNUC_INTERNAL gboolean itdb_device_requires_checksum (Itdb_Device *device) case ITDB_IPOD_GENERATION_NANO_2: case ITDB_IPOD_GENERATION_VIDEO_1: case ITDB_IPOD_GENERATION_VIDEO_2: - case ITDB_IPOD_GENERATION_TOUCH_1: case ITDB_IPOD_GENERATION_FIFTH: case ITDB_IPOD_GENERATION_SIXTH: return FALSE; |