#! /bin/sh /usr/share/dpatch/dpatch-run ## pmjdebruijn_import-remove-lowercase.dpatch by Pascal de Bruijn ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Don't lowercase when importing via gnome-volume-manager @DPATCH@ diff -Nur f-spot-orig/src/CameraFileSelectionDialog.cs f-spot-import/src/CameraFileSelectionDialog.cs --- f-spot-orig/src/CameraFileSelectionDialog.cs 2008-07-22 14:57:19.000000000 +0200 +++ f-spot-import/src/CameraFileSelectionDialog.cs 2008-07-22 15:00:54.000000000 +0200 @@ -248,7 +248,7 @@ if (! Directory.Exists (tempdir)) Directory.CreateDirectory (tempdir); - string orig = Path.Combine (tempdir, camfile.FileName.ToLower ()); + string orig = Path.Combine (tempdir, camfile.FileName); string path = orig; int i = 0;