[389-commits] ldap/servers

Noriko Hosoi nhosoi at fedoraproject.org
Thu Jan 20 18:28:45 UTC 2011


 ldap/servers/slapd/slapi-private.h |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 68bc0a4391b77ad717fbdfb93f9eebb25eda5bc1
Author: Noriko Hosoi <nhosoi at redhat.com>
Date:   Thu Jan 20 10:20:52 2011 -0800

    Bug 627993 - Inconsistent storage of password expiry times
    
    Commit made in 5727b8899700f574026bc9be5a1990c4c66619cf introduced
    a bug.  The commit removed 2 functions format_genTime and
    parse_genTime from slapi-private.h.  But they are used in plugins,
    which requires them in the header file.  This fix restores the
    function declarations.

diff --git a/ldap/servers/slapd/slapi-private.h b/ldap/servers/slapd/slapi-private.h
index 0873a75..3bc0c74 100644
--- a/ldap/servers/slapd/slapi-private.h
+++ b/ldap/servers/slapd/slapi-private.h
@@ -1117,8 +1117,10 @@ time_t read_localTime(struct berval* from);
 time_t parse_localTime(char* from);
 void write_localTime(time_t from, struct berval* into);
 time_t current_time( void );
+char* format_genTime(time_t from);
 void write_genTime(time_t from, struct berval* into);
 time_t read_genTime(struct berval* from);
+time_t parse_genTime(char* from);
 long parse_duration(char *value);
 char *gen_duration(long duration);
 




More information about the 389-commits mailing list