X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/blobdiff_plain/00fe263ae5028467d6fd50d9129a84a0894a5300..3ae9c0f3823953b64448628b6b7cd5964a5f125f:/lib/mr_init.c diff --git a/lib/mr_init.c b/lib/mr_init.c index 35e599a0..880e88c1 100644 --- a/lib/mr_init.c +++ b/lib/mr_init.c @@ -3,7 +3,7 @@ * $Author$ * $Header$ * - * Copyright (C) 1987 by the Massachusetts Institute of Technology + * Copyright (C) 1987, 1990 by the Massachusetts Institute of Technology * For copying and distribution information, please see the file * . */ @@ -13,21 +13,21 @@ static char *rcsid_sms_init_c = "$Header$"; #endif lint #include -#include "sms_private.h" +#include "mr_private.h" -int sms_inited = 0; +int mr_inited = 0; /* the reference to link_against_the_moira_version_of_gdb is to make * sure that this is built with the proper libraries. */ -sms_init() +mr_init() { extern int link_against_the_moira_version_of_gdb; - if (sms_inited) return; + if (mr_inited) return; gdb_init(); - init_sms_err_tbl(); - init_krb_err_tbl(); + initialize_sms_error_table(); + initialize_krb_error_table(); link_against_the_moira_version_of_gdb = 0; - sms_inited=1; + mr_inited=1; }