]> andersk Git - moira.git/blame - lib/mr_init.c
make auth do the right thing for version 2 of the protocol
[moira.git] / lib / mr_init.c
CommitLineData
0fa91a0a 1/*
2 * $Source$
3 * $Author$
4 * $Header$
5 *
6 * Copyright (C) 1987 by the Massachusetts Institute of Technology
7 *
8 * $Log$
9 * Revision 1.1 1987-05-31 22:06:40 wesommer
10 * Initial revision
11 *
12 */
13
14#ifndef lint
15static char *rcsid_sms_init_c = "$Header$";
16#endif lint
17
18#include "sms_private.h"
19
20int sms_inited = 0;
21
22sms_init()
23{
24 if (sms_inited) return;
25
26 gdb_init();
27 init_sms_err_tbl();
28 init_krb_err_tbl();
29 sms_inited=1;
30}
This page took 0.054709 seconds and 5 git commands to generate.