summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7672a04)
raw | patch | inline | side by side (parent: 7672a04)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 30 Mar 2007 06:11:36 +0000 (06:11 +0000) | ||
committer | cajus <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 | patch | blob | history | |
include/functions_setup.inc | patch | blob | history |
diff --git a/Changelog b/Changelog
index 42e0fb1ae3a0bca13d16bd444ddd8a90ab9b4701..3cd4ce031f09e0683b178c0b7060645952d9a24b 100644 (file)
--- a/Changelog
+++ b/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)
$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);
}
} 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]), $/;"';
}