Skip to content
Snippets Groups Projects
Commit 4dc5c344 authored by intrigeri's avatar intrigeri
Browse files

Fixed tr construct reporting a warning (Closes: #452669).

parent c18c24b4
Branches
Tags
No related merge requests found
...@@ -3,6 +3,7 @@ version 0.9.6 -- unreleased ...@@ -3,6 +3,7 @@ version 0.9.6 -- unreleased
. fix bug in cstream definition, thanks Jamie McClelland . fix bug in cstream definition, thanks Jamie McClelland
. Allow the entire backup run to be halted by an action, thanks to . Allow the entire backup run to be halted by an action, thanks to
Matthew Palmer (Closes: #455836) Matthew Palmer (Closes: #455836)
. Fixed tr construct reporting a warning (Closes: #452669)
handler changes handler changes
dup: dup:
. General cleanup . General cleanup
......
...@@ -180,7 +180,7 @@ function check_perms() { ...@@ -180,7 +180,7 @@ function check_perms() {
# simple lowercase function # simple lowercase function
function tolower() { function tolower() {
echo "$1" | tr [:upper:] [:lower:] echo "$1" | tr '[:upper:]' '[:lower:]'
} }
# simple to integer function # simple to integer function
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment