Fix spelling issues

This commit is contained in:
Lars Kruse 2021-03-31 20:38:49 +02:00
parent 8334867a72
commit da87fcd6c7
3 changed files with 4 additions and 4 deletions

View File

@ -4,8 +4,8 @@ echo "succes.value $success"
Tim Small <tim@seoss.co.uk> Tim Small <tim@seoss.co.uk>
accesss => 'NFSPROC3_ACCESS (Check Access Permission)', accesss => 'NFSPROC3_ACCESS (Check Access Permission)',
# Beginn des modifizierten Skriptes - Beginning of the modified script # # Beginn des modifizierten Skriptes - Beginning of the modified script #
[ /(\d+) packets with ECN ECT\(0\) bit set$/, [ [ :packets, 'ECT(0) bit' ] ] ], [/(\d+) packets with ECN ECT\(0\) bit set$/, [[:packets, 'ECT(0) bit']]],
[ /(\d+) packets with ECN ECT\(1\) bit set$/, [ [ :packets, 'ECT(1) bit' ] ] ], [/(\d+) packets with ECN ECT\(1\) bit set$/, [[:packets, 'ECT(1) bit']]],
[ /(\d+) ARP entrys? timed out$/, [ [ :entries, 'timed out' ] ] ], [ /(\d+) ARP entrys? timed out$/, [ [ :entries, 'timed out' ] ] ],
echo -en "recieved.value " echo -en "recieved.value "
print "require dont.graph.anything [0-9]+\n" print "require dont.graph.anything [0-9]+\n"

View File

@ -56,7 +56,7 @@ static char getitem(char *input, unsigned char item, char *output)
} }
if (stop) { if (stop) {
/* Found stop, means we have a start aswell */ /* Found stop, means we have a start as well */
strncpy(output, &input[start], stop - start); strncpy(output, &input[start], stop - start);
return 1; return 1;
} else if (start) { } else if (start) {

View File

@ -77,7 +77,7 @@ if ( defined($ARGV[0]) && $ARGV[0] eq "autoconf" ) {
exit; exit;
} }
# Sanity Check enviroment. # Sanity Check environment.
if ( ! -e $openSSL ) { if ( ! -e $openSSL ) {
die "FATAL: OpenSSL not found."; die "FATAL: OpenSSL not found.";
} }