X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fschema.c;h=0f27cffb38cae1af28f21606aca4ed793666869e;hb=7684514535dbe9f407b420bab76f06861ad7587d;hp=e78686c75847fac1f17819850275700855d3d91a;hpb=acbb5cf689a4336af05c9f259d909d8141055bac;p=openldap diff --git a/servers/slapd/schema.c b/servers/slapd/schema.c index e78686c758..0f27cffb38 100644 --- a/servers/slapd/schema.c +++ b/servers/slapd/schema.c @@ -42,11 +42,11 @@ schema_info( Entry **entry, const char **text ) struct berval vals[5]; struct berval nvals[5]; - e = (Entry *) SLAP_CALLOC( 1, sizeof(Entry) ); + e = entry_alloc(); if( e == NULL ) { /* Out of memory, do something about it */ Debug( LDAP_DEBUG_ANY, - "schema_info: SLAP_CALLOC failed - out of memory.\n", 0, 0, 0 ); + "schema_info: entry_alloc failed - out of memory.\n", 0, 0, 0 ); *text = "out of memory"; return LDAP_OTHER; } @@ -120,11 +120,11 @@ schema_info( Entry **entry, const char **text ) char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ]; /* - * According to RFC 2251: + * According to RFC 4512: - Servers SHOULD provide the attributes createTimestamp and - modifyTimestamp in subschema entries, in order to allow clients to - maintain their caches of schema information. + Servers SHOULD maintain the 'creatorsName', 'createTimestamp', + 'modifiersName', and 'modifyTimestamp' attributes for all entries of + the DIT. * to be conservative, we declare schema created * AND modified at server startup time ...