X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslurpd%2Fglobals.c;h=c935f75c2e43749e4ce5ed226613aa908d095e49;hb=0aebe2e51a250df46d4983e82107194be15caa81;hp=3bafef51560a41159896e0ef3e264df991e886b4;hpb=0e2af54a3ffdeebe3901370683be56fcc53023b0;p=openldap diff --git a/servers/slurpd/globals.c b/servers/slurpd/globals.c index 3bafef5156..c935f75c2e 100644 --- a/servers/slurpd/globals.c +++ b/servers/slurpd/globals.c @@ -1,10 +1,18 @@ /* $OpenLDAP$ */ -/* - * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2004 The OpenLDAP Foundation. + * 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 file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . */ -/* - * Copyright (c) 1996 Regents of the University of Michigan. +/* Portions Copyright (c) 1996 Regents of the University of Michigan. * All rights reserved. * * Redistribution and use in source and binary forms are permitted @@ -14,6 +22,10 @@ * software without specific prior written permission. This software * is provided ``as is'' without express or implied warranty. */ +/* ACKNOWLEDGEMENTS: + * This work was originally developed by the University of Michigan + * (as part of U-MICH LDAP). + */ /* * globals.c - initialization code for global data @@ -32,10 +44,13 @@ Globals *sglob; int ldap_syslog = 0; +#ifdef LOG_DEBUG int ldap_syslog_level = LOG_DEBUG; +#else +int ldap_syslog_level = 0; +#endif int ldap_debug = 0; - /* * Initialize the globals */ @@ -49,12 +64,17 @@ init_globals( void ) return NULL; } +#ifdef HAVE_NT_SERVICE_MANAGER + g->slapd_configfile = ".\\slapd.conf"; + g->slurpd_rdir = ".\\replica"; +#else g->slapd_configfile = SLAPD_DEFAULT_CONFIGFILE; + g->slurpd_rdir = DEFAULT_SLURPD_REPLICA_DIR "/replica"; +#endif g->no_work_interval = DEFAULT_NO_WORK_INTERVAL; g->slurpd_shutdown = 0; g->num_replicas = 0; g->replicas = NULL; - g->slurpd_rdir = DEFAULT_SLURPD_REPLICA_DIR "/replica"; strcpy( g->slurpd_status_file, DEFAULT_SLURPD_STATUS_FILE ); g->slapd_replogfile[ 0 ] = '\0'; g->slurpd_replogfile[ 0 ] = '\0'; @@ -62,7 +82,9 @@ init_globals( void ) g->one_shot_mode = 0; g->no_detach = 0; g->myname = NULL; + g->serverName = NULL; g->srpos = 0L; + g->version = 0; if ( St_init( &(g->st)) < 0 ) { fprintf( stderr, "Cannot initialize status data\n" ); exit( EXIT_FAILURE );