Code

Added missing backslash for perl mkntpasswd generation.
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 30 Mar 2007 06:11:36 +0000 (06:11 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 30 Mar 2007 06:11:36 +0000 (06:11 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5932 594d385d-05f5-0310-b6e9-bd551577e9d8

Changelog
include/functions_setup.inc

index 42e0fb1ae3a0bca13d16bd444ddd8a90ab9b4701..3cd4ce031f09e0683b178c0b7060645952d9a24b 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -6,6 +6,8 @@ GOsa2 changelog
   - Included vacation date range specification
   - Fixed non-saved Samba-Domain changes in groups
   - Freezed application parameters are not editable anymore
+  - Fixed problem with removing commata based DN's
+  - Corrected setup generated perl mkntpasswd string
 
 * gosa 2.5.9
   - Fixed ldap tls connections when schema check was being used
index 0db0df0d2d205ffbf28d0e0082b61bbc596ff70e..3cd14af18c33b90eca2db457b4ad8aa87308e6e0 100644 (file)
@@ -420,7 +420,7 @@ function perform_additional_checks(&$faults)
   $alt = 0;
 
   if (!$have_mkntpwd){
-    $query= 'LC_ALL=C LANG=C perl -MCrypt::SmbHash -e "print join(q[:], ntlmgen $ARGV[0]), $/;" &>/dev/null';
+    $query= 'LC_ALL=C LANG=C perl -MCrypt::SmbHash -e "print join(q[:], ntlmgen \$ARGV[0]), $/;" &>/dev/null';
     system ($query, $ret);
     $alt= ($ret == 0);
   }
@@ -505,7 +505,7 @@ function parse_contrib_conf()
   } elseif (preg_match("/^Usage: mkntpwd /", shell_exec ("mkntpwd 2>&1"))){
     $pwdhash= "mkntpwd";
   } else {
-    $pwdhash= 'perl -MCrypt::SmbHash -e "print join(q[:], ntlmgen $ARGV[0]), $/;"';
+    $pwdhash= 'perl -MCrypt::SmbHash -e "print join(q[:], ntlmgen \$ARGV[0]), $/;"';
   }