summaryrefslogtreecommitdiff
path: root/community/gshare/monofix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/gshare/monofix.patch')
-rw-r--r--community/gshare/monofix.patch87
1 files changed, 0 insertions, 87 deletions
diff --git a/community/gshare/monofix.patch b/community/gshare/monofix.patch
deleted file mode 100644
index 0888c3c3e..000000000
--- a/community/gshare/monofix.patch
+++ /dev/null
@@ -1,87 +0,0 @@
-diff -rN -u old-gshare/src/gshared/daemon.cs new-gshare/src/gshared/daemon.cs
---- old-gshare/src/gshared/daemon.cs 2006-09-16 20:31:47.881173352 +0100
-+++ new-gshare/src/gshared/daemon.cs 2006-09-16 20:31:47.959161496 +0100
-@@ -308,11 +308,11 @@
- if (reason == FTPServerShutdownReason.Error)
- {
- Log.ErrorMessage("Shutting down FTP server because of an error");
-- Utility.InvokeLater(delegate
-+ Utility.InvokeLater((GShare.Utility.BackgroundTask)(delegate
- {
- Utility.ShowGenericFatalErrorDialog();
- Shutdown();
-- });
-+ }));
- }
- }
-
-@@ -367,24 +367,24 @@
- {
- case ClientState.Collision:
- /*TODO figure out what to do*/
-- Utility.InvokeLater(delegate
-+ Utility.InvokeLater((GShare.Utility.BackgroundTask)(delegate
- {
- StopDaemon();
-- });
-+ }));
- break;
- case ClientState.Failure:
- Log.ErrorMessage("Zeroconf client failed to register");
-- Utility.InvokeLater(delegate
-+ Utility.InvokeLater((GShare.Utility.BackgroundTask)(delegate
- {
- Utility.ShowCannotPublishServiceDialog();
- Shutdown();
-- });
-+ }));
- break;
- case ClientState.Running:
-- Utility.InvokeLater(delegate
-+ Utility.InvokeLater((GShare.Utility.BackgroundTask)(delegate
- {
- PublishFTPServer();
-- });
-+ }));
- break;
- }
-
-@@ -410,19 +410,19 @@
- iAvahiServiceName = EntryGroup.GetAlternativeServiceName(iAvahiServiceName);
- }
-
-- Utility.InvokeLater(delegate
-+ Utility.InvokeLater((GShare.Utility.BackgroundTask)(delegate
- {
- StartZeroConf(iFtpServer.ServerPort);
-- });
-+ }));
-
- break;
- case EntryGroupState.Failure:
- Log.ErrorMessage("Failed to publish FTP service on zeroconf network");
-- Utility.InvokeLater(delegate
-+ Utility.InvokeLater((GShare.Utility.BackgroundTask)(delegate
- {
- Utility.ShowCannotPublishServiceDialog();
- Shutdown();
-- });
-+ }));
- break;
-
- case EntryGroupState.Established:
-@@ -460,11 +460,11 @@
- ex.Message,
- ex.StackTrace);
-
-- Utility.InvokeLater(delegate
-+ Utility.InvokeLater((GShare.Utility.BackgroundTask)(delegate
- {
- Utility.ShowCannotPublishServiceDialog();
- Shutdown();
-- });
-+ }));
-
- }
-
-