~ubuntu-branches/ubuntu/jaunty/nas/jaunty

« back to all changes in this revision

Viewing changes to server/dia/nasconfig.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve McIntyre
  • Date: 2004-06-23 01:15:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040623011502-30uqd1dyu47iv2dp
Tags: 1.6d-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * nasconfig.c - init/configure some things...
3
 
 *
4
 
 * $Id: nasconfig.c,v 1.3 2000/10/06 00:39:50 jon Exp $
5
 
 *
6
 
 * Jon Trulson, 9/19/1999
7
 
 */
8
 
 
9
 
#include "misc.h"
10
 
                                /* the NasConfig structure is
11
 
                                   instantiated from within
12
 
                                   globals.c */
13
 
#include "nasconfig.h"
14
 
 
15
 
/* Initialize the global config items */
16
 
 
17
 
void diaInitGlobalConfig()
18
 
{
19
 
                                /* init all the default values */
20
 
  NasConfig.DoDebug = FALSE;
21
 
  NasConfig.DoVerbose = FALSE;
22
 
  NasConfig.DoDeviceRelease = TRUE;
23
 
  NasConfig.DoDaemon = FALSE;
24
 
 
25
 
                                /* that be it */
26
 
  return;
27
 
}