diff options
author | Jan Zeleny <jzeleny@redhat.com> | 2012-07-16 08:42:27 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-07-16 10:25:26 -0400 |
commit | 33988e421afa86892a732cc74c153fdc5be8703b (patch) | |
tree | d562b90f061044a381752542e8adba8253208787 /src | |
parent | 8e520758e2325c10d153bd2e3f57330b37545817 (diff) | |
download | sssd-33988e421afa86892a732cc74c153fdc5be8703b.tar.gz sssd-33988e421afa86892a732cc74c153fdc5be8703b.tar.xz sssd-33988e421afa86892a732cc74c153fdc5be8703b.zip |
Fixed wrong number in shadowLastChange
The attribute is supposed to contain number of days since the epoch, not
the number of seconds.
Diffstat (limited to 'src')
-rw-r--r-- | src/providers/ldap/sdap_async.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/providers/ldap/sdap_async.c b/src/providers/ldap/sdap_async.c index 4b2869220..42c8dd680 100644 --- a/src/providers/ldap/sdap_async.c +++ b/src/providers/ldap/sdap_async.c @@ -744,7 +744,8 @@ sdap_modify_shadow_lastchange_send(TALLOC_CTX *mem_ctx, ret = ENOMEM; goto done; } - values[0] = talloc_asprintf(values, "%ld", (long)time(NULL)); + /* The attribute contains number of days since the epoch */ + values[0] = talloc_asprintf(values, "%ld", (long)time(NULL)/86400); if (values[0] == NULL) { ret = ENOMEM; goto done; |