summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Alfredsen <loki_val@gentoo.org>2009-01-25 13:56:40 +0000
committerPeter Alfredsen <loki_val@gentoo.org>2009-01-25 13:56:40 +0000
commit501de3f530eb14786c8753414517968a62f8c23e (patch)
tree474e694cd2a1cbf2cad0b081ec37b1e45a4916bf /dev-dotnet/mono-zeroconf/files
parentamd64/x86 stable, bug #256078 (diff)
downloadhistorical-501de3f530eb14786c8753414517968a62f8c23e.tar.gz
historical-501de3f530eb14786c8753414517968a62f8c23e.tar.bz2
historical-501de3f530eb14786c8753414517968a62f8c23e.zip
Fix bug 252647, thanks to Paul de Vrieze (pauldv@gentoo.org) for the patch.
Package-Manager: portage-2.2_rc23/cvs/Linux x86_64
Diffstat (limited to 'dev-dotnet/mono-zeroconf/files')
-rw-r--r--dev-dotnet/mono-zeroconf/files/mono-zeroconf-0.8.0-mono-2.2.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-dotnet/mono-zeroconf/files/mono-zeroconf-0.8.0-mono-2.2.patch b/dev-dotnet/mono-zeroconf/files/mono-zeroconf-0.8.0-mono-2.2.patch
new file mode 100644
index 000000000000..777ff0134970
--- /dev/null
+++ b/dev-dotnet/mono-zeroconf/files/mono-zeroconf-0.8.0-mono-2.2.patch
@@ -0,0 +1,24 @@
+diff -urN mono-zeroconf-0.8.0.orig/src/Mono.Zeroconf.Providers.AvahiDBus/Mono.Zeroconf.Providers.AvahiDBus/Service.cs mono-zeroconf-0.8.0/src/Mono.Zeroconf.Providers.AvahiDBus/Mono.Zeroconf.Providers.AvahiDBus/Service.cs
+--- mono-zeroconf-0.8.0.orig/src/Mono.Zeroconf.Providers.AvahiDBus/Mono.Zeroconf.Providers.AvahiDBus/Service.cs 2008-06-27 00:45:12.000000000 +0200
++++ mono-zeroconf-0.8.0/src/Mono.Zeroconf.Providers.AvahiDBus/Mono.Zeroconf.Providers.AvahiDBus/Service.cs 2009-01-22 16:52:58.155891843 +0100
+@@ -65,17 +65,17 @@
+
+ public string Name {
+ get { return name; }
+- protected set { name = value; }
++ set { name = value; }
+ }
+
+ public string RegType {
+ get { return regtype; }
+- protected set { regtype = value; }
++ set { regtype = value; }
+ }
+
+ public string ReplyDomain {
+ get { return reply_domain; }
+- protected set { reply_domain = value; }
++ set { reply_domain = value; }
+ }
+
+ public uint NetworkInterface {