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