1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Description: Fix minor spelling typos
Author: Marcos Fouces <marcos@debian.org>
Forwarded: https://github.com/mteg/braa/pull/6
---
This patch header follows DEP-3: https://dep.debian.net/deps/dep3/
--- a/README
+++ b/README
@@ -83,7 +83,7 @@
Another query type is the WALK query. WALK queries make braa traverse
- the object tree hierachy ,,below'' a specified object, like snmpwalk
+ the object tree hierarchy ,,below'' a specified object, like snmpwalk
does. The second example:
10.253.101.1:.1.3.6.1.2.1.1.*
is a WALK query on the 'system' (.1.3.6.1.2.1.1) object; the output
@@ -122,7 +122,7 @@
... a comma character is used to separate queries in case one wants to
specify more queries in a query list. The example also shows how to make
advantage of query IDs. The IDs (after a slash) do not affect the querying
- process itself, but they are just printed before appropiate lines of output:
+ process itself, but they are just printed before appropriate lines of output:
ContactPerson:10.253.101.1:25ms:.1.3.6.1.2.1.1.4.0:Mateusz Golicz MG452-RIPE <mtg@elsat.net.pl>
RoutingTable:10.253.101.1:29ms:.1.3.6.1.2.1.4.20.1.1.10.253.101.1:10.253.101.1
--- a/braa.c
+++ b/braa.c
@@ -29,7 +29,7 @@
printf(" -x Hexdump octet-strings\n");
printf(" -t <s> Wait <s> seconds for responses.\n");
printf(" -d <s> Wait <s> microseconds after sending each packet.\n");
- printf(" -p <s> Wait <s> miliseconds between subsequent passes.\n");
+ printf(" -p <s> Wait <s> milliseconds between subsequent passes.\n");
printf(" -f <file> Load queries from file <file> (one by line).\n");
printf(" -a <time> Quit after <time> seconds, independent on what happens.\n");
printf(" -r <rc> Retry count (default: 3).\n");
|