contrib: Spelling fixes

Correct typos of the following word families:

standard
increase
comments
valgrind
promiscuous
editing
libtonezone
storage
aggressive
whitespace
russellbryant
consecutive
peternixon

ASTERISK-29714

Change-Id: I9cafbf41b579c9c0c84c81719d2c4f900beec245
This commit is contained in:
Josh Soref
2021-10-30 21:04:41 -04:00
committed by Joshua Colp
parent 84556eb962
commit 815e99d5ea
15 changed files with 17 additions and 17 deletions

View File

@@ -600,7 +600,7 @@ FILES
#@@@HELPEND@@@
# Be careful editng the inline scripts.
# Be careful editing the inline scripts.
# They're space-indented.
# We need the python bit because lock_infos isn't

View File

@@ -209,7 +209,7 @@ tar -czvf /tmp/$tardir.tar.gz -C $tmpdir $tardir 2>/dev/null
exit
# Be careful editng the inline scripts.
# Be careful editing the inline scripts.
# They're space-indented.
# We need the python bit because lock_infos isn't
@@ -231,7 +231,7 @@ parser.add_argument('--timezone', action='store', required=False)
args=parser.parse_args()
# We only convert timestamps that are at the beginning of a line
# or are preceeded by a whilespace character or a '['
# or are preceeded by a whitespace character or a '['
rets = re.compile(r'(^|(?<=\s|\[))\d+(\.\d+)?', flags=re.M)
if args.timezone and len(args.timezone) > 0:
tzf = tz.tzfile('/usr/share/zoneinfo/' + args.timezone)

View File

@@ -600,7 +600,7 @@ attributetype ( AstAccountTransport
attributetype ( AstAccountPromiscRedir
NAME 'AstAccountPromiscRedir'
DESC 'Asterisk account promiscous redirects'
DESC 'Asterisk account promiscuous redirects'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15)

View File

@@ -597,7 +597,7 @@ olcAttributeTypes: ( AstAccountTransport
#
olcAttributeTypes: ( AstAccountPromiscRedir
NAME 'AstAccountPromiscRedir'
DESC 'Asterisk account promiscous redirects'
DESC 'Asterisk account promiscuous redirects'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15)

View File

@@ -14,7 +14,7 @@
# where Asterisk's pbx/pbx_spool.c will be looking for work
set SPOOLDIR /var/spool/asterisk/outgoing
# pbx_spool is fairly aggresive, so make files here first
# pbx_spool is fairly aggressive, so make files here first
set TEMPDIR /tmp
if { ![file writable $SPOOLDIR] } {

View File

@@ -4,7 +4,7 @@
# Copy Policy: GNU Public Licence Version 2 or later
# URL: http://www.peternixon.net/code/
# Supported: PostgreSQL, Oracle, MySQL
# Copyright: 2004 Peter Nixon <codemonkey@petenixon.net>
# Copyright: 2004 Peter Nixon <codemonkey@peternixon.net>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by

View File

@@ -26,7 +26,7 @@ remote shell session) you can use:
screendump 9
The init script of the Debian package should be able to run safe_asterisk
as the asterisk service, if so configured. See coments in
as the asterisk service, if so configured. See comments in
/etc/default/asterisk
.SH FILES

View File

@@ -1,6 +1,6 @@
#!/bin/bash
# compare_valgrind: diff two valgrinf memory usage logs. Masks out PIDs,
# compare_valgrind: diff two valgrind memory usage logs. Masks out PIDs,
# addresses and such that should normally be different.
#
# Usage: ./compare_valgrind file1.log file2.log | less

View File

@@ -22,7 +22,7 @@ REQUIRED_LENGTH = 6
# Regular expressions that match against invalid passwords
REGEX_BLACKLIST = [
("(?P<digit>\d)(?P=digit){%d}" % (REQUIRED_LENGTH - 1),
"%d consective numbers that are the same" % REQUIRED_LENGTH)
"%d consecutive numbers that are the same" % REQUIRED_LENGTH)
]