git-svn-id: http://code.autistici.org/svn/backupninja/trunk@570
758a04ac-41e6-0310-8a23-
8373a73cc35d
. 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
# simple lowercase function
function tolower() {
- echo "$1" | tr [:upper:] [:lower:]
+ echo "$1" | tr '[:upper:]' '[:lower:]'
}
# simple to integer function