source: trunk/third/moira/lib/mr_init.c @ 23178

Revision 23178, 479 bytes checked in by broder, 16 years ago (diff)
Take a new snapshot from CVS for Moira, and add a debathena-moira-update-server package
Line 
1/* $Id$
2 *
3 * Initialize libmoira
4 *
5 * Copyright (C) 1987-1990 by the Massachusetts Institute of Technology
6 * For copying and distribution information, please see the file
7 * <mit-copyright.h>.
8 */
9
10#include <mit-copyright.h>
11#include <moira.h>
12#include "mr_private.h"
13
14RCSID("$Header$");
15
16int mr_inited = 0;
17
18void mr_init(void)
19{
20  if (mr_inited)
21    return;
22
23  initialize_sms_error_table();
24  initialize_krb_error_table();
25  initialize_ureg_error_table();
26  mr_inited = 1;
27}
Note: See TracBrowser for help on using the repository browser.