diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-11 23:57:44 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-11 23:57:44 +0200 |
commit | cb78d4593b5ac4eaa0cbead6f86027d040a9e88a (patch) | |
tree | a0fac9981c9799e87500e6bf4cefbd4646259172 /source3/winbindd | |
parent | 75a36a9a5491b86aaa3b0983d5a2bd5d024f783a (diff) | |
download | samba-cb78d4593b5ac4eaa0cbead6f86027d040a9e88a.tar.gz samba-cb78d4593b5ac4eaa0cbead6f86027d040a9e88a.tar.bz2 samba-cb78d4593b5ac4eaa0cbead6f86027d040a9e88a.zip |
Cope with changed signature of http_timestring().
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_dual.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_dual.c b/source3/winbindd/winbindd_dual.c index aeb52d9b5a..994c94b5be 100644 --- a/source3/winbindd/winbindd_dual.c +++ b/source3/winbindd/winbindd_dual.c @@ -905,7 +905,7 @@ static bool calculate_next_machine_pwd_change(const char *domain, if (time(NULL) < (pass_last_set_time + timeout)) { next_change = pass_last_set_time + timeout; DEBUG(10,("machine password still valid until: %s\n", - http_timestring(next_change))); + http_timestring(talloc_tos(), next_change))); *t = timeval_set(next_change, 0); return true; } |