mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
403f4479bc
Replace old Id as needed (back-tcl). Leave updating of contribWare to contributors (for now).
49 lines
1000 B
C
49 lines
1000 B
C
/* config.c - passwd backend configuration file routine */
|
|
/* $OpenLDAP$ */
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/socket.h>
|
|
#include <ac/string.h>
|
|
#include <ac/time.h>
|
|
|
|
#include "slap.h"
|
|
#include "external.h"
|
|
|
|
int
|
|
passwd_back_db_config(
|
|
BackendDB *be,
|
|
const char *fname,
|
|
int lineno,
|
|
int argc,
|
|
char **argv
|
|
)
|
|
{
|
|
/* alternate passwd file */
|
|
if ( strcasecmp( argv[0], "file" ) == 0 ) {
|
|
#ifdef HAVE_SETPWFILE
|
|
if ( argc < 2 ) {
|
|
fprintf( stderr,
|
|
"%s: line %d: missing filename in \"file <filename>\" line\n",
|
|
fname, lineno );
|
|
return( 1 );
|
|
}
|
|
be->be_private = ch_strdup( argv[1] );
|
|
#else /* HAVE_SETPWFILE */
|
|
fprintf( stderr,
|
|
"%s: line %d: ignoring \"file\" option (not supported on this platform)\n",
|
|
fname, lineno );
|
|
#endif /* HAVE_SETPWFILE */
|
|
|
|
/* anything else */
|
|
} else {
|
|
fprintf( stderr,
|
|
"%s: line %d: unknown directive \"%s\" in passwd database definition (ignored)\n",
|
|
fname, lineno, argv[0] );
|
|
}
|
|
|
|
return( 0 );
|
|
}
|