Fixed broken toint function, causes backups to not run from cron

when told to run "everyday" (debian bug: #341881)
This commit is contained in:
Micah Anderson 2005-12-16 16:15:13 +00:00
parent 921babdf41
commit c26bd0e12d

View File

@ -148,7 +148,7 @@ function tolower() {
# simple to integer function
function toint() {
echo "$1" | tr [:alpha:] -d
echo "$1" | tr -d [:alpha:]
}
#