Skip to content

Commit

Permalink
Fix build/API issue on gmcs 2.4
Browse files Browse the repository at this point in the history
svn path=/trunk/Mono.Zeroconf/; revision=133632
  • Loading branch information
abock committed May 6, 2009
1 parent 57fdeae commit 6ba5341
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@ protected Protocol AvahiProtocol {

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 {
Expand Down

0 comments on commit 6ba5341

Please sign in to comment.