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

fixed Trac#11

parent 579ea902
Branches
Tags
No related merge requests found
...@@ -10,6 +10,8 @@ version 0.9.5 -- unreleased ...@@ -10,6 +10,8 @@ version 0.9.5 -- unreleased
applied to fix #370396 broke this, especially for configuration files applied to fix #370396 broke this, especially for configuration files
created with permissions 000 by an older ninjahelper version. created with permissions 000 by an older ninjahelper version.
. Enhanced portability for other platforms . Enhanced portability for other platforms
. Fixed Trac#11 (quoting needed to prevent shell expansion, broke the
toint function sometimes)
handler changes handler changes
ldap: ldap:
. Fixed shell command quoting issues, missing 'then' clauses, cleaned up . Fixed shell command quoting issues, missing 'then' clauses, cleaned up
......
...@@ -178,7 +178,7 @@ function tolower() { ...@@ -178,7 +178,7 @@ function tolower() {
# simple to integer function # simple to integer function
function toint() { function toint() {
echo "$1" | tr -d [:alpha:] echo "$1" | tr -d '[:alpha:]'
} }
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment