X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fback-dnssrv%2Fconfig.c;h=4f02683adb7de50442bff41a6a231266c4df93c5;hb=18af0bdbce961c3b5d5ee09992cea7ec972cdb1f;hp=99dad353af788463dfd9ea49a67e742f7bf7f119;hpb=79ebfbc4fe7ff53c49eadac57210b1396e63d016;p=openldap diff --git a/servers/slapd/back-dnssrv/config.c b/servers/slapd/back-dnssrv/config.c index 99dad353af..4f02683adb 100644 --- a/servers/slapd/back-dnssrv/config.c +++ b/servers/slapd/back-dnssrv/config.c @@ -1,8 +1,22 @@ /* config.c - DNS SRV backend configuration file routine */ /* $OpenLDAP$ */ -/* - * Copyright 2000 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file +/* This work is part of OpenLDAP Software . + * + * Copyright 2000-2013 The OpenLDAP Foundation. + * Portions Copyright 2000-2003 Kurt D. Zeilenga. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in the file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . + */ +/* ACKNOWLEDGEMENTS: + * This work was originally developed by Kurt D. Zeilenga for inclusion + * in OpenLDAP Software. */ #include "portable.h" @@ -13,31 +27,28 @@ #include #include "slap.h" -#include "external.h" +#include "proto-dnssrv.h" +#if 0 int dnssrv_back_db_config( BackendDB *be, const char *fname, int lineno, int argc, - char **argv -) + char **argv ) { +#if 0 struct ldapinfo *li = (struct ldapinfo *) be->be_private; - char *port; if ( li == NULL ) { fprintf( stderr, "%s: line %d: DNSSRV backend info is null!\n", fname, lineno ); return( 1 ); } +#endif /* no configuration options (yet) */ - { - fprintf( stderr, -"%s: line %d: unknown directive \"%s\" in DNSSRV database definition (ignored)\n", - fname, lineno, argv[0] ); - } - return 0; + return SLAP_CONF_UNKNOWN; } +#endif