diff -u f-spot-0.4.1/debian/changelog f-spot-0.4.1/debian/changelog --- f-spot-0.4.1/debian/changelog +++ f-spot-0.4.1/debian/changelog @@ -1,3 +1,10 @@ +f-spot (0.4.1-4ubuntu2) hardy; urgency=low + + * debian/patches/30_fix-infinite-loop.dpatch: + - Fixed FTBFS in main.cs. (LP: #183722) + + -- Matvey Kozhev Thu, 17 Jan 2008 16:02:42 +0600 + f-spot (0.4.1-4ubuntu1) hardy; urgency=low * Merged from Debian. (LP: #181332, LP: #141180) diff -u f-spot-0.4.1/debian/patches/30_fix-infinite-loop.dpatch f-spot-0.4.1/debian/patches/30_fix-infinite-loop.dpatch --- f-spot-0.4.1/debian/patches/30_fix-infinite-loop.dpatch +++ f-spot-0.4.1/debian/patches/30_fix-infinite-loop.dpatch @@ -26,7 +26,7 @@ System.Console.WriteLine ("Can't get a connection to the dbus. Trying again..."); + if (++ retry_count > 5) { + System.Console.WriteLine ("Sorry, couldn't start F-Spot"); -+ return 1; ++ System.Environment.Exit (1); + } + } }