1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

ctdb: Fix code spelling

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz>
This commit is contained in:
Andreas Schneider
2023-04-06 15:45:07 +02:00
committed by Andreas Schneider
parent 9580d66b14
commit 8f18fadd31
3 changed files with 3 additions and 3 deletions

View File

@ -168,7 +168,7 @@ ipreallocated
events, even though these events may not run on some nodes if
there are no relevant changes. That is, the "ipreallocated"
event is triggered unconditionally, even on nodes where public
IP addresses assignements have not changed.
IP addresses assignments have not changed.
This event is used to reconfigure services.

View File

@ -250,7 +250,7 @@ updateip)
$CTDB gratarp "$ip" "$niface"
# tickle all existing connections, so that dropped packets
# are retransmited and the tcp streams work
# are retransmitted and the tcp streams work
tickle_tcp_connections "$ip"
;;

View File

@ -744,7 +744,7 @@ ctdb_counter_get () {
_ctdb_counter_common "$1"
# unary counting!
_val=$(wc -c < "$_counter_file" 2>/dev/null || echo 0)
# Strip leading spaces from ouput of wc (on freebsd)
# Strip leading spaces from output of wc (on freebsd)
# shellcheck disable=SC2086
echo $_val
}