Skip to content

Commit

Permalink
Fixed another bug in snmpwalk. Version number changed to 5.2.
Browse files Browse the repository at this point in the history
--HG--
extra : convert_revision : svn%3A0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5%4048267
  • Loading branch information
lextm committed Jul 3, 2010
1 parent ce05b83 commit 0fa2e09
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Samples/C#/snmpwalk/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public static void Main(string[] args)
ReportMessage report = discovery.GetResponse(timeout, receiver);

ProviderPair record = new ProviderPair(auth, priv);
Messenger.BulkWalk(version, receiver, new OctetString(community), test, result, timeout, maxRepetitions, mode, record, report);
Messenger.BulkWalk(version, receiver, new OctetString(user), test, result, timeout, maxRepetitions, mode, record, report);
}

foreach (Variable variable in result)
Expand Down
4 changes: 2 additions & 2 deletions SharpSnmpLib/Microsoft.VersionNumber.targets
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<!-- Properties for controlling the Assembly Version -->
<PropertyGroup>
<AssemblyMajorVersion>5</AssemblyMajorVersion>
<AssemblyMinorVersion>1</AssemblyMinorVersion>
<AssemblyMinorVersion>2</AssemblyMinorVersion>
<AssemblyBuildNumber></AssemblyBuildNumber>
<AssemblyRevision></AssemblyRevision>
<AssemblyBuildNumberType>DateString</AssemblyBuildNumberType>
Expand All @@ -21,7 +21,7 @@
<!-- Properties for controlling the Assembly File Version -->
<PropertyGroup>
<AssemblyFileMajorVersion>5</AssemblyFileMajorVersion>
<AssemblyFileMinorVersion>1</AssemblyFileMinorVersion>
<AssemblyFileMinorVersion>2</AssemblyFileMinorVersion>
<AssemblyFileBuildNumber></AssemblyFileBuildNumber>
<AssemblyFileRevision></AssemblyFileRevision>
<AssemblyFileBuildNumberType>DateString</AssemblyFileBuildNumberType>
Expand Down
4 changes: 2 additions & 2 deletions snmpd/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
//
// You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below:
[assembly: AssemblyVersion("5.1.010627.00")]
[assembly: AssemblyFileVersion("5.1.010627.00")]
[assembly: AssemblyVersion("5.1.010703.00")]
[assembly: AssemblyFileVersion("5.1.010703.00")]
[assembly: CLSCompliant(true)]
[assembly: NeutralResourcesLanguage("en-US")]

Expand Down

0 comments on commit 0fa2e09

Please sign in to comment.