From 366964f92e1f199b915f52b2f7d7bbacd67405f4 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Thu, 8 Oct 2009 20:32:51 +0200 Subject: [PATCH 3/3] mount vfat with shortname=mixed by default The previous default, shortname=lower, breaks all-uppercase file names ("touch FOO" creates "foo"), thus breaks rsync, and Windows compatibility. The default was changed in the Linux kernel as well, see http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=955234755ce4a2c33cfc558912aa8f2148cc1fc6 https://bugs.freedesktop.org/show_bug.cgi?id=24129 --- src/devkit-disks-device.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/devkit-disks-device.c b/src/devkit-disks-device.c index 4a621c6..5af03ce 100644 --- a/src/devkit-disks-device.c +++ b/src/devkit-disks-device.c @@ -4109,7 +4109,7 @@ typedef struct { static const char *vfat_defaults[] = {"uid=", "gid=", - "shortname=lower", + "shortname=mixed", "dmask=0077", "utf8=1", NULL}; -- 1.6.3.3