X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fback-dnssrv%2Fconfig.c;h=78151e49b9c7edbfb1a48d4e04921cd575727531;hb=8fe328dd518d02e8eea9f36068e13671c9cb8093;hp=5aaa66f558e0eaa9f1884f8ad68bbb0a8992c7c7;hpb=2c2a54d6d7770df53ce2774abb317eafa48e3c21;p=openldap diff --git a/servers/slapd/back-dnssrv/config.c b/servers/slapd/back-dnssrv/config.c index 5aaa66f558..78151e49b9 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-2012 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 "back-dnssrv.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