summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d9db080)
raw | patch | inline | side by side (parent: d9db080)
author | janw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 17 Mar 2009 11:21:00 +0000 (11:21 +0000) | ||
committer | janw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 17 Mar 2009 11:21:00 +0000 (11:21 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13549 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-si/server/events/clMessages.pm | patch | blob | history |
index 15120393f2dabf4339fe645b3380de6f80d2a90d..6fa3d1c339f98a2cafb87ca84902206724c74ce9 100644 (file)
# Set gotoLastSystem information
my $last_system_dn = $ldap_entry->get_value('gotoLastSystem');
if ((defined $last_system_dn) && ($last_system_dn eq $system_dn)) {
- &main::daemon_log("$session_id INFO: no new 'gotoLastSystem' inforamtion for ladp entry 'uid=$user', do nothing!", 5);
+ &main::daemon_log("$session_id INFO: no new 'gotoLastSystem' information for ldap entry 'uid=$user', do nothing!", 5);
} elsif ((defined $last_system_dn) && ($last_system_dn ne $system_dn)) {
$ldap_entry->replace ( 'gotoLastSystem' => $system_dn );
&main::daemon_log("$session_id INFO: update attribute 'gotoLastSystem'='$system_dn' at ldap entry 'uid=$user'!",5);
# Attention: only write information if last_system_dn and system_dn differs
my $last_system_login = $ldap_entry->get_value('gotoLastSystemLogin');
if ((defined $last_system_login) && ($last_system_dn eq $system_dn)) {
- &main::daemon_log("$session_id INFO: no new 'gotoLastSystemLogin' inforamtion for ladp entry 'uid=$user', do nothing!", 5);
+ &main::daemon_log("$session_id INFO: no new 'gotoLastSystemLogin' information for ldap entry 'uid=$user', do nothing!", 5);
} elsif ((defined $last_system_login) && ($last_system_dn ne $system_dn)) {
$ldap_entry->replace ( 'gotoLastSystemLogin' => $timestamp );
&main::daemon_log("$session_id INFO: update attribute 'gotoLastSystemLogin'='$timestamp' at ldap entry 'uid=$user'!", 5);