#endif /* NOMINUM_PUBLIC */ was missing the magic comment

This commit is contained in:
Andreas Gustafsson 2000-08-11 21:51:04 +00:00
parent 09fc73adf9
commit 7e6d32fdba
6 changed files with 21 additions and 21 deletions

View file

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: confctx.c,v 1.80 2000/08/02 20:44:19 brister Exp $ */
/* $Id: confctx.c,v 1.81 2000/08/11 21:50:58 gson Exp $ */
#include <config.h>
@ -1068,7 +1068,7 @@ dns_c_ctx_optionsprint(FILE *fp, int indent, dns_c_options_t *options)
#ifndef NOMINUM_PUBLIC
PRINT_INTEGER(max_names, "max-names");
#endif
#endif /* NOMINMUM_PUBLIC */
PRINT_AS_SIZE_CLAUSE(max_cache_size, "max-cache-size");
@ -1606,7 +1606,7 @@ dns_c_ctx_optionsnew(isc_mem_t *mem, dns_c_options_t **options)
#ifndef NOMINUM_PUBLIC
opts->max_names = NULL;
#endif
#endif /* NOMINMUM_PUBLIC */
opts->expert_mode = NULL;
opts->fake_iquery = NULL;
@ -1774,7 +1774,7 @@ dns_c_ctx_optionsdelete(dns_c_options_t **opts)
#ifndef NOMINUM_PUBLIC
FREEFIELD(max_names);
#endif
#endif /* NOMINMUM_PUBLIC */
FREEFIELD(transfer_source);
FREEFIELD(transfer_source_v6);
@ -1889,7 +1889,7 @@ UINT32_FUNCS(maxrefreshtime, max_refresh_time)
#ifndef NOMINUM_PUBLIC
UINT32_FUNCS(maxnames, max_names)
#endif
#endif /* NOMINMUM_PUBLIC */
BOOL_FUNCS(expertmode, expert_mode)
BOOL_FUNCS(fakeiquery, fake_iquery)

View file

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: confview.c,v 1.43 2000/08/02 20:44:22 brister Exp $ */
/* $Id: confview.c,v 1.44 2000/08/11 21:51:00 gson Exp $ */
#include <config.h>
@ -529,7 +529,7 @@ dns_c_view_new(isc_mem_t *mem, const char *name, dns_rdataclass_t viewclass,
#ifndef NOMINUM_PUBLIC
view->max_names = NULL;
#endif
#endif /* NOMINMUM_PUBLIC */
view->additional_data = NULL;
view->transfer_format = NULL;
@ -747,7 +747,7 @@ dns_c_view_print(FILE *fp, int indent, dns_c_view_t *view) {
#ifndef NOMINUM_PUBLIC
PRINT_INT32(max_names, "max-names");
#endif
#endif /* NOMINMUM_PUBLIC */
PRINT_AS_SIZE_CLAUSE(max_cache_size, "max-cache-size");
@ -893,7 +893,7 @@ dns_c_view_delete(dns_c_view_t **viewptr) {
#ifndef NOMINUM_PUBLIC
FREEFIELD(max_names);
#endif
#endif /* NOMINMUM_PUBLIC */
FREEFIELD(additional_data);
FREEFIELD(transfer_format);
@ -1531,7 +1531,7 @@ UINT32_FUNCS(maxrefreshtime, max_refresh_time)
#ifndef NOMINUM_PUBLIC
UINT32_FUNCS(maxnames, max_names)
#endif
#endif /* NOMINMUM_PUBLIC */
BYTYPE_FUNCS(dns_c_addata_t, additionaldata, additional_data)
BYTYPE_FUNCS(dns_transfer_format_t, transferformat, transfer_format)

View file

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: confzone.c,v 1.53 2000/08/02 20:44:23 brister Exp $ */
/* $Id: confzone.c,v 1.54 2000/08/11 21:51:01 gson Exp $ */
#include <config.h>
@ -44,7 +44,7 @@
#define MZ_SIG_VALID_INTERVAL_BIT 8
#ifndef NOMINUM_PUBLIC
#define MZ_MAX_NAMES_BIT 9
#endif
#endif /* NOMINMUM_PUBLIC */
#define MZ_MIN_RETRY_TIME_BIT 10
#define MZ_MAX_RETRY_TIME_BIT 11
#define MZ_MIN_REFRESH_TIME_BIT 12
@ -69,7 +69,7 @@
#define SZ_FORWARD_BIT 12
#ifndef NOMINUM_PUBLIC
#define SZ_MAX_NAMES_BIT 13
#endif
#endif /* NOMINMUM_PUBLIC */
#define SZ_MIN_RETRY_TIME_BIT 14
#define SZ_MAX_RETRY_TIME_BIT 15
#define SZ_MIN_REFRESH_TIME_BIT 16
@ -3654,7 +3654,7 @@ dns_c_zone_getmaxnames(dns_c_zone_t *zone, isc_uint32_t *retval) {
return (res);
}
#endif
#endif /* NOMINMUM_PUBLIC */
/*

View file

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: confview.h,v 1.37 2000/08/02 20:44:26 brister Exp $ */
/* $Id: confview.h,v 1.38 2000/08/11 21:51:02 gson Exp $ */
#ifndef DNS_CONFVIEW_H
#define DNS_CONFVIEW_H 1
@ -147,7 +147,7 @@ struct dns_c_view {
#ifndef NOMINUM_PUBLIC
isc_uint32_t *max_names;
#endif
#endif /* NOMINMUM_PUBLIC */
dns_c_addata_t *additional_data;
dns_transfer_format_t *transfer_format;

View file

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: confzone.h,v 1.40 2000/08/02 20:44:27 brister Exp $ */
/* $Id: confzone.h,v 1.41 2000/08/11 21:51:04 gson Exp $ */
#ifndef DNS_CONFZONE_H
#define DNS_CONFZONE_H 1
@ -117,7 +117,7 @@ struct dns_c_master_zone {
#ifndef NOMINUM_PUBLIC
isc_uint32_t max_names;
#endif
#endif /* NOMINMUM_PUBLIC */
isc_uint32_t min_retry_time;
isc_uint32_t max_retry_time;
@ -157,7 +157,7 @@ struct dns_c_slave_zone {
#ifndef NOMINUM_PUBLIC
isc_uint32_t max_names;
#endif
#endif /* NOMINMUM_PUBLIC */
isc_uint32_t min_retry_time;
isc_uint32_t max_retry_time;

View file

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: xfrin.c,v 1.92 2000/08/10 20:26:08 gson Exp $ */
/* $Id: xfrin.c,v 1.93 2000/08/11 21:50:56 gson Exp $ */
#include <config.h>
@ -1097,7 +1097,7 @@ xfrin_recv_done(isc_task_t *task, isc_event_t *ev) {
goto failure;
}
}
#endif
#endif /* NOMINUM_PUBLIC */
/*
* Update the number of messages received.