[gnome-disk-utility] Fix typo in iso9660 detection



commit e205dcb854ae86224aaa1fa86e6fa604e46a4339
Author: David Zeuthen <zeuthen gmail com>
Date:   Mon Jul 30 12:43:20 2012 -0400

    Fix typo in iso9660 detection
    
    
    Signed-off-by: David Zeuthen <zeuthen gmail com>

 src/disks/gducreatediskimagedialog.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/disks/gducreatediskimagedialog.c b/src/disks/gducreatediskimagedialog.c
index ead0cf5..d66bcff 100644
--- a/src/disks/gducreatediskimagedialog.c
+++ b/src/disks/gducreatediskimagedialog.c
@@ -207,7 +207,7 @@ create_disk_image_populate (CreateDiskImageData *data)
   /* If it's an ISO/UDF filesystem, suggest a filename ending in .iso */
   fstype = udisks_block_get_id_type (data->block);
   fslabel = udisks_block_get_id_label (data->block);
-  if (g_strcmp0 (fstype, "udf") == 0 || g_strcmp0 (fstype, "udf") == 0)
+  if (g_strcmp0 (fstype, "iso9660") == 0 || g_strcmp0 (fstype, "udf") == 0)
     {
       if (fslabel != NULL && strlen (fslabel) > 0)
         proposed_filename = g_strdup_printf ("%s.iso", fslabel);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]