version 1.9.2.3, 2005/11/14 18:06:15
|
version 1.9.2.5, 2006/01/03 22:16:25
|
Line 1
|
Line 1
|
/* valsort.c - sort attribute values */ |
/* valsort.c - sort attribute values */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/overlays/valsort.c,v 1.15 2005/11/14 14:02:14 ando Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/overlays/valsort.c,v 1.9.2.4 2005/11/26 23:54:52 kurt Exp $ */ |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
* |
* |
* Copyright 2005 The OpenLDAP Foundation. |
* Copyright 2005-2006 The OpenLDAP Foundation. |
* Portions copyright 2005 Symas Corporation. |
* Portions copyright 2005 Symas Corporation. |
* All rights reserved. |
* All rights reserved. |
* |
* |
Line 531 valsort_parseCtrl(
|
Line 531 valsort_parseCtrl(
|
|
|
static slap_overinst valsort; |
static slap_overinst valsort; |
|
|
int valsort_init() |
int valsort_initialize( void ) |
{ |
{ |
int rc; |
int rc; |
|
|
Line 564 int valsort_init()
|
Line 564 int valsort_init()
|
|
|
#if SLAPD_OVER_VALSORT == SLAPD_MOD_DYNAMIC |
#if SLAPD_OVER_VALSORT == SLAPD_MOD_DYNAMIC |
int init_module( int argc, char *argv[]) { |
int init_module( int argc, char *argv[]) { |
return valsort_init(); |
return valsort_initialize(); |
} |
} |
#endif |
#endif |
|
|