diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/itdb_itunesdb.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2007-11-14 Christophe <teuf@gnome.org> + * src/itdb_itunesdb.c: use libgpod as the prefix of music files to + be copied to the ipod instead of gtkpod + +2007-11-14 Christophe <teuf@gnome.org> + * src/itdb_itunesdb.c: get rid of local g_mkdir_with_parents copy since we now depend on glib 2.8 which have it. Replace mkdir with g_mkdir diff --git a/src/itdb_itunesdb.c b/src/itdb_itunesdb.c index bd454ef..42749f3 100644 --- a/src/itdb_itunesdb.c +++ b/src/itdb_itunesdb.c @@ -5695,7 +5695,7 @@ gchar *itdb_cp_get_dest_filename (Itdb_Track *track, do { /* we need to loop until we find an unused filename */ dest_components[1] = - g_strdup_printf("gtkpod%06d%s", + g_strdup_printf("libgpod%06d%s", rand + oops, original_suffix); ipod_fullfile = itdb_resolve_path ( parent_dir_filename, @@ -5866,7 +5866,7 @@ Itdb_Track *itdb_cp_finalize (Itdb_Track *track, * * For storage, the directories "f00 ... fnn" will be used randomly. * - * The filename is constructed as "gtkpod"<random number> and copied + * The filename is constructed as "libgpod"<random number> and copied * to @track->ipod_path. If this file already exists, <random number> * is adjusted until an unused filename is found. * |